내 질문은 이것입니다. 많은 항목이 있고 날짜별로 그룹화하고 싶습니다. 하지만 내 데이터베이스에 날짜가있는 대신 datetime 필드가 있습니다. 어떡하죠?
select * from follow_queue group by follow_date cast follow_date as date
작동하지 않습니다.
답변
사용 DATE()
기능 :
select * from follow_queue group by DATE(follow_date)
답변
http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html
http://www.tutorialspoint.com/mysql/mysql-date-time-functions.htm
날짜 기능을 직접 사용하십시오. 작동하기를 바랍니다.