Created
June 3, 2017 08:00
-
-
Save adityadaniel/6b4ab300d886c26d4b15dd7a86d4e889 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare | |
i number(1); | |
Nama varchar2(100); | |
begin | |
<< outer_loop >> | |
select first_name into nama from employees where first_name = 'Den'; | |
dbms_output.put_line('Nama adalah: ' || Nama ); | |
for i in 1..3 loop | |
<< inner_loop >> | |
dbms_output.put_line('Nama saya berulang: ' || Nama ); | |
end loop outer_loop; | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment