You are viewing a single comment's thread. Return to all comments →
ORACLE (PL/SQL)
SET SERVEROUTPUT on; BEGIN FOR a in(select * from employee order by name) loop dbms_output.put_line( a.name ); end loop; end; /
Seems like cookies are disabled on this browser, please enable them to open this website
Employee Names
You are viewing a single comment's thread. Return to all comments →
ORACLE (PL/SQL)
SET SERVEROUTPUT on; BEGIN FOR a in(select * from employee order by name) loop dbms_output.put_line( a.name ); end loop; end; /