set serveroutput on
declare
v1 boolean;
begin
v1 := 100 > 5;
if v1 then
p('맞다');
else
p('아니다');
end if;
end;
/
'Oracle > PL/SQL' 카테고리의 다른 글
15일차 # 2-29: 치환 변수 + 바인드 변수 (0) | 2012.04.24 |
---|---|
15일차 # 2-25: Bind variables (0) | 2012.04.24 |
15일차 # 2-18: BINARY_FLOAT & BINARY_DOUBLE type (0) | 2012.04.24 |
15일차 # 2-14: PL/SQL Scalar Data Types (0) | 2012.04.24 |
15일차 # 2-11: Guidelines for Declaring and Initializing PL/SQL Variables (0) | 2012.04.24 |