详解Oracle数据库各类控制语句的使用
本文我们主要介绍了Oracle数据库中各种控制语句的使用,包括逻辑控制语句、Case when的使用、While的使用以及For的使用等,希望本次的介绍能够对您有所收获!
Oracle数据库各类控制语句的使用是本文我们主要要介绍的内容,包括一些逻辑控制语句、Case when的使用、While的使用以及For的使用等等,接下来我们就开始一一介绍这部分内容,希望能够对您有所帮助。
Oracle 中逻辑控制语句
- If elsif else end if
- set serverout on;
- declare per_dep_count number;
- begin
- select count(*) into per_dep_count from emp;
- if per_dep_count>0 then
- dbms_output.put_line('Big Than 0');
- elsif per_dep_count>5 then <span style="font-size:24px;color:#ff0000;"><strong>--elsif not elseif!!!!
- </strong></span> dbms_output.put_line('Big Than 5');
- else
- dbms_output.put_line('En?');
- end if;
- end;
Case when 的使用的两种方式 :
第一种使用方式
- declare per_dep_count number;
- begin
- select count(*) into per_dep_count from emp;
- case per_dep_count
- when 1 then
- dbms_output.put_line('1');
- when 2 then
- dbms_output.put_line('2');
- else
- dbms_output.put_line('else');
- end case;
- end;
第二种使用方式
- declare per_dep_count number;
- begin
- select count(*) into per_dep_count from emp;
- case
- when per_dep_count=1 then
- dbms_output.put_line('1');
- when per_dep_count=2 then
- dbms_output.put_line('2');
- else
- dbms_output.put_line('else');
- end case;
- end;
While 的使用
- declare v_id number:=0;
- begin
- while v_id<5 loop
- v_idv_id:=v_id+1;
- dbms_output.put_line(v_id);
- end loop;
- end;
For的使用
- declare v_id number:=0;
- begin
- for v_id in 1..5 loop
- dbms_output.put_line(v_id);
- end loop;
- end;
关于Oracle数据库各类控制语句的使用就介绍到这里了,希望本次的介绍能够对您有所收获!
免责声明:本站所有文章和图片均来自用户分享和网络收集,文章和图片版权归原作者及原出处所有,仅供学习与参考,请勿用于商业用途,如果损害了您的权利,请联系网站客服处理。
新手学oracle常见疑问2019-12-05
oracle远程连接服务器出现 ORA-12170 TNS:连接超时 解2019-01-22
oracle case when 语句的用法详解2019-02-07
ORACLE性能优化之SQL语句优化2021-03-10
oracle中使用group by优化distinct2019-12-05
ORACLE 10g 安装教程[图文]2019-01-21
ORA-00947:Not enough values (没有足够的值)的深入分2019-01-22
Oracle显示游标的使用及游标for循环2019-03-01
Oracle 查看表空间的大小及使用情况sql语句2019-01-22
ORA-12514及ORA-28547错误解决方案2019-01-23