How to select only date from a DATETIME field in MySQL?

前端 未结 16 2116
隐瞒了意图╮
隐瞒了意图╮ 2020-11-28 04:37

I have a table in the MySQL database that is set up with DATETIME. I need to SELECT in this table only by DATE and excluding the time.

How d

16条回答
  •  日久生厌
    2020-11-28 04:50

    In the interest of actually putting a working solution to this question:

    SELECT ... WHERE `myDateColumn` >= DATE(DATE_FORMAT(NOW(),'%Y-%m-%d'));
    

    Obviously, you could change the NOW() function to any date or variable you want.

提交回复
热议问题