Feature request: I want to count items grouped by a DATETIME field. To group on the day I am doing this in sqlite3: ``` sql SELECT COUNT(id) AS sum, strftime("%Y-%m-%d", date) AS year_month_date FROM myTable GROUP BY strftime("%Y-%m-%d", date); ```
Feature request: I want to count items grouped by a DATETIME field. To group on the day I am doing this in sqlite3: