My query is this. I have a bunch of entries and i want to group them by date. But instead of having date in my database, I have a datetime field. What do I do?
Use DATE() function:
select * from follow_queue group by DATE(follow_date)