Skip to content

Instantly share code, notes, and snippets.

@ryandotsmith
Created December 26, 2011 21:48
Show Gist options
  • Save ryandotsmith/1522172 to your computer and use it in GitHub Desktop.
Save ryandotsmith/1522172 to your computer and use it in GitHub Desktop.
SQL helper functions for first of month and last of month
CREATE OR REPLACE FUNCTION last_day(timestamptz)
RETURNS timestamptz AS
$$
SELECT (date_trunc('MONTH', $1) + INTERVAL '1 MONTH - 1 day');
$$ LANGUAGE 'sql' IMMUTABLE STRICT;
CREATE OR REPLACE FUNCTION first_day(timestamptz)
RETURNS timestamptz AS
$$
SELECT date_trunc('MONTH', $1);
$$ LANGUAGE 'sql' IMMUTABLE STRICT;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment