今天遇到一个问题,就是要统计一个数据库表中的相同字段的条数的问题。
SELECT conferenceId, COUNT(*) as num FROM meet_conference_attendee where conferenceId in (100740609,101650330,104095246) GROUP BY conferenceId ;
关于group by
http://zousheng.blog.163.com/blog/static/345363920108270207705/
关于MySQL中concat函数
http://zac110.iteye.com/blog/1582382