Skip to content

Instantly share code, notes, and snippets.

View richardsalt's full-sized avatar
🎯
Focusing

Richard Salt richardsalt

🎯
Focusing
View GitHub Profile
@richardsalt
richardsalt / date_dim.sql
Created March 24, 2020 10:20 — forked from ewhauser/date_dim.sql
Generate Date Dimension Table for BigQuery
SELECT
FORMAT_DATE('%F', d) as id,
d AS full_date,
EXTRACT(YEAR FROM d) AS year,
EXTRACT(WEEK FROM d) AS year_week,
EXTRACT(DAY FROM d) AS year_day,
EXTRACT(YEAR FROM d) AS fiscal_year,
FORMAT_DATE('%Q', d) as fiscal_qtr,
EXTRACT(MONTH FROM d) AS month,
FORMAT_DATE('%B', d) as month_name,