\
create or replace PROCEDURE p_test2(name in varchar2 )
is
Begin
DBMS_output.put_line(name ||'님 반가워요!!');
DBMS_output.put_line(8888);
End;
exec p_test2('이도연');
exec p_test2('강감찬');
[PLSQL]프로시져 OUTPUT ,CUSOR 속성 사용법 / (0) | 2021.03.26 |
---|---|
[PLSQL]제어문 if,for,loop end,while //성적출력//구구단 (0) | 2021.03.26 |
[PLSQL] 변수 선언 (0) | 2021.03.26 |