Created
September 23, 2013 20:26
-
-
Save PedersenThomas/6676398 to your computer and use it in GitHub Desktop.
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 OR REPLACE FUNCTION | |
InsertPerson(text, text, timestamp, double precision) | |
RETURNS | |
INTEGER | |
AS | |
$delimiter$ | |
INSERT INTO person(firstname, lastname, dateofbirth, height) VALUES | |
($1, $2, $3, $4) | |
RETURNING id | |
$delimiter$ | |
LANGUAGE SQL; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment