SELECT *
FROM   TableName
WHERE  dateColumn = CURDATE() 
CURDATE() returns current date with time set as 00:00:00.
2
solved MySQL – Most efficient way to select today’s date with time as 00:00:00 [closed]
 
SELECT *
FROM   TableName
WHERE  dateColumn = CURDATE() 
CURDATE() returns current date with time set as 00:00:00.
2
solved MySQL – Most efficient way to select today’s date with time as 00:00:00 [closed]