1.条件控制A. IF条件分支语法:if (条件1) then 语句;elsif (条件2) then 语句;elsif (条件3) then 语句;else 语句;end if;B . case条件分支:等值比较、条件比较、case表达式a.等值比较语法:CASE 条件判断 WHEN 条件值的表达...
分类:
数据库 时间:
2015-07-05 13:38:32
阅读次数:
158
declare v_job varchar2(50) := 'Programmer'; v_sal number;begin if v_job = 'Programmer' then v_sal := 6000; elsif v_job = 'Senior Pr...
分类:
数据库 时间:
2015-06-30 00:00:08
阅读次数:
488
PL/SQL流程控制语句介绍PL/SQL的流程控制语句, 包括如下三类:控制语句: IF 语句循环语句: LOOP语句, EXIT语句顺序语句: GOTO语句, NULL语句①if语句IF THENPL/SQL 和SQL语句;ELSIF THEN其它语句;ELSIF THEN其它语句;ELSE其它....
分类:
数据库 时间:
2015-06-28 11:09:25
阅读次数:
168
if 条件成立 then 语句1;elsif 条件成立 then 语句2 ;elsif 条件成立 then 语句3 ;else 语句3 end if ;A<B成立时进入程序体,不成立退出while A<B loop.程序体end loop;当条件成立时退出循环loop exit when A<B.程...
分类:
数据库 时间:
2015-05-21 21:47:16
阅读次数:
178
if 条件成立 then 语句1;elsif 条件成立 then 语句2 ;elsif 条件成立 then 语句3 ;else 语句3 end if ;A<B成立时进入程序体,不成立退出while A<B loop.程序体end loop;当条件成立时退出循环loop exit when A<B.程...
分类:
数据库 时间:
2015-05-21 19:31:23
阅读次数:
122
Perl结构控制语句:
if条件语句:
if (condition) {
expression;
} elsif {
expression;
} else {
expression;
}
unless条件语句:
条件为假时执行.
unless (condition) {
expression;
} elsi...
分类:
其他好文 时间:
2015-04-23 17:29:45
阅读次数:
118
一、条件判断if - elsif - else二、循环whileutilforforeachdo - whiledo - utilgoto,last, next, redo三、单行条件语法为statement keyword condexpr。其中keyword可为if、unless、while或u...
分类:
其他好文 时间:
2015-04-13 01:40:47
阅读次数:
122
条件与顺序控制IF语句
要点:
a、一个if总要有一个匹配的end if;
b、在关键字end和if之间一定要有空格;
c、关键字elsif中不要夹带e;
d、只在关键字end if后使用分号(;)
具体表现形式:
a、IF THEN END IF
if和then之间的条件决定then与end if之间的逻辑是否会被执行;如果条件为false或null时,指定逻辑不被执行。
b、I...
分类:
数据库 时间:
2015-04-08 21:38:07
阅读次数:
192
flow controlthe if statementsyntax :IF condition1 THEN action1;[ELsIF condition2 THEN action2;[ELSE action3;]END IF;eg :IF condition THEN SQL or PL-SQ...
分类:
数据库 时间:
2015-03-17 23:31:31
阅读次数:
217
Oracle 中 decode 函数用法 含义解释: decode(条件,值1,返回值1,值2,返回值2,...值n,返回值n,缺省值) 该函数的含义如下: IF 条件=值1 THEN RETURN(翻译值1) ELSIF 条件=值2 THEN RETURN(翻译值...
分类:
数据库 时间:
2015-02-27 12:05:00
阅读次数:
140