Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
MYSQL データベースには、[29-11-2012] の形式の日付を含む日付列があります。ユーザーがphpページで選択した月に基づいて値を表示したいと思います。
たとえば、ユーザーが OCT を選択すると、この特定の月の他のすべての列が表示されます。
これに対してSQLクエリを提案できますか?
ありがとう、シェイル
使用できます
WHERE MONTH(STR_TO_DATE(formdate,'%d-%m-%Y'))
この状態のように
基本的に、mysql は日付を yyyy-mm-dd 形式でのみ保存します。