Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save oliviermarin/2c2ce18dca223e713bd12798b72c1017 to your computer and use it in GitHub Desktop.
Save oliviermarin/2c2ce18dca223e713bd12798b72c1017 to your computer and use it in GitHub Desktop.
PLSQL | PostgreSQL | creation simple de script plsql
DO $$
DECLARE
counter integer := 0;
BEGIN
FOR i IN 1..10
LOOP
counter := couter + i;
END LOOP;
END;
$$ LANGUAGE plpgsql;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment