if条件语句。
if条件语句的基本结构
IF <布尔表达式> THEN
PL/SQL 和 SQL语句
END IF;
或 IF <布尔表达式> THEN
PL/SQL 和 SQL语句
ELSE 其它语句
END IF;
declare
cou number := &number;
begin
if cou >10 then
dbms_output.put_line(‘cou=‘||cou);
elsif cou<5 then
dbms_output.put_line(‘值小于5‘);
else
dbms_output.put_line(‘条件不满足‘);
end if;
end;
时间: 2024-10-17 18:30:44