Skip to content

Instantly share code, notes, and snippets.

View emesterhazy's full-sized avatar

Evan Mesterhazy emesterhazy

View GitHub Profile
@emesterhazy
emesterhazy / mysql_calendar_table.sql
Last active September 18, 2018 18:47 — forked from bryhal/gist:4129042
MYSQL: Generate Calendar Table
-- Creates a calendar table in mysql
DROP TABLE IF EXISTS calendar;
CREATE TABLE calendar (
id INTEGER PRIMARY KEY, -- year*10000+month*100+day
db_date DATE NOT NULL,
year INTEGER NOT NULL,
month INTEGER NOT NULL, -- 1 to 12
day INTEGER NOT NULL, -- 1 to 31
quarter INTEGER NOT NULL, -- 1 to 4