数据库:循环语句--1:if then/elsif/end if.

Posted maqiang_66

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据库:循环语句--1:if then/elsif/end if.相关的知识,希望对你有一定的参考价值。

if循环语句:

1:语法:

IF <布尔表达式> THEN

PL/SQL 和 SQL语句
END IF;
--或
IF <布尔表达式> THEN
PL/SQL 和 SQL语句
ELSIF
其它语句
END IF;

2:实例:

--查询姓名是Scott的工资。
declare
V_ename emp.ename%type :=‘SCOTT‘;
V_sal emp.sal%type;
V_comment varchar2(60);

begin
select sal into V_sal from emp where ename=V_ename;
if V_sal<1500 then
V_comment :=‘Fairly less‘;
elsif V_sal<3000 then
V_comment :=‘A little more‘;
else
V_comment :=‘Lots of money‘;
end if;
dbms_output.put_line(V_sal);
dbms_output.put_line(V_comment);
end;

以上是关于数据库:循环语句--1:if then/elsif/end if.的主要内容,如果未能解决你的问题,请参考以下文章

oracle存储过程中写IF ELES

PL/SQL程序设计

postgresql中使用if else语句

PLSQL——03结构控制

PLSQL基础

判断与循环语句