PostgreSQL - PL/pgSQL Fundamentals
Consider this PostgreSQL function snippet:
What will be the output when this function is called?
FOR i IN 1..3 LOOP RETURN NEXT i; END LOOP; RETURN;
What will be the output when this function is called?
