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.
日付タイプの列と時間タイプの別の列があり、今より前のすべてのアイテムを選択したいと考えています。私はそれを働かせることができません。このようなもの:
SELECT * FROM table WHERE CONCAT(date_field,' ',time_field)<=NOW()
何か案は?
MySQL のADDTIME()関数を使用します。
ADDTIME()
SELECT * FROM mytable WHERE ADDTIME(date_field, time_field) <= NOW()