Select records from NOW() -1 Day

前端 未结 6 1601
没有蜡笔的小新
没有蜡笔的小新 2020-12-04 13:38

Is there a way in a MySQL statement to order records (through a date stamp) by >= NOW() -1 so all records from the day before today to the future are selected?

6条回答
  •  不知归路
    2020-12-04 14:25

    Judging by the documentation for date/time functions, you should be able to do something like:

    SELECT * FROM FOO
    WHERE MY_DATE_FIELD >= NOW() - INTERVAL 1 DAY
    

提交回复
热议问题