Skip to content

Instantly share code, notes, and snippets.

View cc-visionary's full-sized avatar
🎯
Focusing

Christopher Lim cc-visionary

🎯
Focusing
View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
-- SELECT * FROM subscriptions
-- LIMIT 4;
-- SELECT MIN(subscription_start) as min_start,
-- MAX(subscription_end) as max_end
-- FROM subscriptions;
-- WITH months AS
-- (SELECT '2017-01-01' AS 'first_day',
-- '2017-01-31' AS 'last_day'