Skip to content

Instantly share code, notes, and snippets.

View EddyBorja's full-sized avatar
😎

Eddy Borja EddyBorja

😎
View GitHub Profile
@jpotts18
jpotts18 / create_dates.sql
Last active August 29, 2023 19:49
Date Dimension for Postgres
CREATE TABLE public.dates (
id int4 NOT NULL PRIMARY KEY,
date date NOT NULL,
datetime timestamp NOT NULL,
julian_day int4 NOT NULL,
day int4 NOT NULL,
day_name varchar NOT NULL,
day_abbrev varchar NOT NULL,