码迷,mamicode.com
首页 > 数据库 > 详细

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

时间:2017-07-18 19:50:47      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:arch   pl/sql   else   air   tle   sql语句   end   varchar2   bms   

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.

标签:arch   pl/sql   else   air   tle   sql语句   end   varchar2   bms   

原文地址:http://www.cnblogs.com/maqiang123/p/7202062.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!