PostgreSQL - PL/pgSQL Fundamentals
Consider this PL/pgSQL snippet:
What will be printed?
DECLARE total integer := 10; BEGIN total := total * 2; RAISE NOTICE '%', total; END;
What will be printed?
