Created
February 1, 2016 14:54
-
-
Save bradymholt/1eefed1eac913d271b6c to your computer and use it in GitHub Desktop.
Postgres snippets
This file contains hidden or 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 FUNCTION fred() RETURNS blah AS $$ | |
$$ LANGUAGE 'plpgsql'; | |
SELECT fred(); | |
DROP FUNCTION fred(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment