declare
first_variable varchar(20):= 'first block';
begin
dbms_output.put_line(first_variable);
declare
second_variable varchar(20) := 'second block';
begin
dbms_output.put_line(second_variable);
end;
end;
결과는 first block
second block
이 나온다.
'데이터베이스 > PL/SQL' 카테고리의 다른 글
PL/SQL PL/SQL블록에 함수 (0) | 2015.11.13 |
---|---|
PL/SQL PL/SQL블록에프로시저 (0) | 2015.11.13 |
PL/SQL DECLARE 간단한 1+1 해보기 (0) | 2015.11.09 |
PL/SQL SelectQuery/alias column(to_char()) (0) | 2015.11.09 |
PL/SQL SelctQuery/alias column(계산된 열에대한 머릿글) (0) | 2015.11.09 |