Skip to content

Instantly share code, notes, and snippets.

@bradymholt
Created February 1, 2016 14:54
Show Gist options
  • Save bradymholt/1eefed1eac913d271b6c to your computer and use it in GitHub Desktop.
Save bradymholt/1eefed1eac913d271b6c to your computer and use it in GitHub Desktop.
Postgres snippets
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