Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
create or replace procedure prt (x in varchar2) is
begin
dbms_output.put_line(x);
end;
/
set serveroutput on format wrap
begin
dbms_output.enable(1000000);
for r in (select * from s_region) loop
prt(r.id||': '||r.name);
end loop;
end;
/
1: North America
2: South America
3: Africa / Middle East
4: Asia
5: Europe
PL/SQL procedure successfully completed.