group_concat and how to use row number in sqlite
问题 i have a data in a table, column id and column date id || datetime 1 || 2013-05-24 19:23:16 2 || 2013-05-28 19:24:20 3 || 2013-05-28 19:25:05 4 || 2013-05-30 19:25:39 5 || 2013-05-30 19:26:05 how query to show only one day with count?or one row with count. so the result is. || datetime || count 1 || 2013-05-24 19:23:16 || 1 2 || 2013-05-28 19:24:20 || 2 3 || 2013-05-30 19:25:39 || 2 i try in mysql and it works , there is my query. SELECT id, GROUP_CONCAT( datetime ) AS date, COUNT( id ) AS