PostgreSQL - Advanced PL/pgSQL
Consider this code:
What will the FETCH ALL command do?
DECLARE cur CURSOR FOR SELECT name FROM employees; OPEN cur; FETCH ALL FROM cur;
What will the FETCH ALL command do?
