MySQL How to SELECT data from table which recorded today?

前端 未结 8 1862
死守一世寂寞
死守一世寂寞 2021-02-04 04:35

Use PHP and MySQL. In my table, there is date field (datetime) recorded by NOW() sql function. Example value of data in this field is 2010-10-07 10:57:36. Ho

8条回答
  •  甜味超标
    2021-02-04 05:08

    Try this

    SELECT * FROM table WHERE DATE(my_date)=DATE(now())
    
    my_date -> column name
    

提交回复
热议问题