Employee Names

  • + 0 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; /