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 dbがありますが、これはvarcharで、この「01/05/2012」のようにフォーマットされていますが、日時の比較を行うため、日時形式に変換する必要があります。
私に何ができる?
ありがとう
使用STR_TO_DATE():
STR_TO_DATE()
SELECT STR_TO_DATE(`date`, '%d/%m/%Y') FROM tbl;