PostgreSQL - Advanced PL/pgSQL
What will be the output of this PL/pgSQL block?
DO $$
DECLARE
counter INTEGER := 3;
BEGIN
WHILE counter > 0 LOOP
RAISE NOTICE 'Count: %', counter;
counter := counter - 1;
END LOOP;
END $$;