PostgreSQL - PL/pgSQL Fundamentals
Consider the following PL/pgSQL block:
What will be the output when this block runs?
DECLARE total integer := 5; BEGIN total := total + 3; RAISE NOTICE '%', total; END;
What will be the output when this block runs?
