Skip to content

Instantly share code, notes, and snippets.

@svanellewee
Created February 24, 2017 11:09
Show Gist options
  • Save svanellewee/3f895e82dd000946d382bde190a1b11e to your computer and use it in GitHub Desktop.
Save svanellewee/3f895e82dd000946d382bde190a1b11e to your computer and use it in GitHub Desktop.
PG SNIPPETS!
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