SQLite
SQLite Connector Details
Overview
Date Behavior
Common SQLite Query Tips
Month Floor
SELECT
strftime('%Y-%m-01', DateClosed) as MonthStart,
sum(amount) as Sales
FROM sales
GROUP BY MonthStart
ORDER BY MonthStart ASC;
Last updated