Created
February 24, 2017 11:09
-
-
Save svanellewee/3f895e82dd000946d382bde190a1b11e to your computer and use it in GitHub Desktop.
PG SNIPPETS!
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
DO $$ | |
declare | |
x node%rowtype; | |
begin | |
for x in SELECT * FROM node | |
loop | |
RAISE NOTICE 'hello ...% %', pg_typeof(x), x; | |
end loop; | |
end; | |
$$; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment