Created
December 26, 2011 21:48
-
-
Save ryandotsmith/1522172 to your computer and use it in GitHub Desktop.
SQL helper functions for first of month and last of month
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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