Skip to content

Instantly share code, notes, and snippets.

@zimmicz
Last active February 28, 2020 11:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zimmicz/0bf97ba25c3bb79cf29c973ece1e100f to your computer and use it in GitHub Desktop.
Save zimmicz/0bf97ba25c3bb79cf29c973ece1e100f to your computer and use it in GitHub Desktop.
WITH data AS (
SELECT
product.id,
i.year_month,
date_part('year', i.year_month) as year,
date_part('month', i.year_month) as month,
( random()*100 )::integer as value
FROM generate_series('2018-01-01'::date, '2018-12-01'::date, '1 month') as i(year_month)
CROSS JOIN generate_series(1,1,1) product(id)
),
date_range AS (
SELECT
date_part('year', i.year_month) as year,
date_part('month', i.year_month) as month
FROM generate_series('2018-01-01'::date, '2019-12-01'::date, '1 month') as i(year_month)
),
products_with_dates AS (
SELECT
products.id,
dr.year,
dr.month,
d.value
FROM (
SELECT DISTINCT id FROM data
) products
CROSS JOIN date_range dr
LEFT JOIN data d ON (products.id = d.id AND dr.year = d.year AND dr.month = d.month)
)
SELECT * FROM products_with_dates ORDER BY id, year, month;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment