How to cast DATETIME as a DATE in mysql?

Solution 1:

Use DATE() function:

select * from follow_queue group by DATE(follow_date)