应无所住,而生其心
排名
1
文章
860
粉丝
112
评论
163
net core webapi post传递参数
庸人 : 确实坑哈,我也是下班好了好几次,发现后台传递对象是可以的,但...
百度编辑器自定义模板
庸人 : 我建议换个编辑器,因为现在百度富文本已经停止维护了,用tinymec...
ICP备案 :渝ICP备18016597号-1
网站信息:2018-2025TNBLOG.NET
技术交流:群号656732739
联系我们:contact@tnblog.net
公网安备:50010702506256
欢迎加群交流技术

oracle编程基础

5710人阅读 2018/12/28 21:28 总访问:5184972 评论:0 收藏:0 手机
分类: Oracle

简单介绍一下oracle中if,else,case when,循环,异常处理等用法


if,else

  1. declare ptype int:=2;
  2. begin
  3.     if ptype = 1 then
  4.        dbms_output.put_line('长');
  5.     else
  6.        dbms_output.put_line('短');
  7.     end if;
  8. end;

if,else if ,else

  1. declare ptype int:=3;
  2. begin  
  3.     if ptype = 1 then
  4.        dbms_output.put_line('长');
  5.     elsif ptype = 2 then  --注意是elsif 不是else if
  6.        dbms_output.put_line('粗');
  7.     elsif ptype = 3 then
  8.        dbms_output.put_line('壮');
  9.     else
  10.        dbms_output.put_line('短');
  11.     end if;
  12. end;


Case When

  1. declare ptype int;
  2. begin  
  3.     ptype:=5;
  4.     case ptype
  5.       when 1 then
  6.           dbms_output.put_line(1);
  7.       when 2 then
  8.           dbms_output.put_line(2);
  9.       else
  10.           dbms_output.put_line('sdfdsf');
  11.      end case;
  12. end;

方法2:

  1. declare ptype int;
  2. begin  
  3.     ptype:=1;
  4.     case 
  5.       when ptype = 1 then
  6.           dbms_output.put_line('香蕉');
  7.       when ptype = 2 then
  8.           dbms_output.put_line('拔那');
  9.       else
  10.           dbms_output.put_line('其他');
  11.      end case;
  12. end;

在查询语句中使用case when

  1. select  ename,
  2.    ( 
  3.      case when ename='SCOTT' then '(>^ω^<)喵'
  4.      when ename = 'BLAKE' then '公老虎'
  5.      when ename = 'KING' then '母老虎'
  6.      else '纸老虎' end   --注意这里是end不是end case
  7.    ) 
  8. from scott.emp;



Oracle循环


1.loop循环

  1. declare i int;
  2. begin
  3.      i:=1;
  4.      loop
  5.          dbms_output.put_line(i);  
  6.          exit when i >=10;
  7.          i:=i+1;--循环退出条件    
  8.      end loop;     
  9. end;

2.while循环

  1. declare ptype int;
  2. begin
  3.      ptype:=1;
  4.      while ptype<10
  5.      loop
  6.          dbms_output.put_line(ptype);  
  7.          ptype:=ptype+1;    
  8.      end loop;     
  9. end;

3.for循环

  1. declare ptype int;
  2. begin
  3.      ptype:=1;
  4.      for ptype in 1..10 
  5.      loop
  6.          dbms_output.put_line(ptype);  
  7.      end loop;     
  8. end;


Oracle异常处理

  1. declare 
  2.  i int:=1;
  3.  p nvarchar2(64);
  4. begin  
  5.    p:='hello';
  6.    i :=p+1; --让数字和字符串相加模拟一个错误
  7.    dbms_output.put_line(p);
  8.    exception 
  9.      when value_error  then  --捕获数字或值错误
  10.         dbms_output.put_line('数字或值错误');
  11.      when others then
  12.         dbms_output.put_line('报错了啊'); 
  13. end;






欢迎加群讨论技术,1群:677373950(满了,可以加,但通过不了),2群:656732739。有需要软件开发,或者学习软件技术的朋友可以和我联系~(Q:815170684)

评价

oracle数据库中没有scott用户

使用SYS用户登录conn sys/密码 as sysdba(默认密码123456)然后找到oracle安装目录下scott.sql的这个文件然后执行命令:@+...

oracle自定义函数的简单使用

一.最最最简单的返回一个数字的函数createorreplacefunctionfun_show returnint--申明返回值 as begin return1; end;...

oracle存储过程

一个简单的带输入输出参数的存储过程(求两数之和)createorreplaceprocedureproc_sum(p1int,p2int,presultoutint) as be...

oracle事务的简单使用

事务:  事务是一个整体,这些操作要么全部执行成功,要么全部不执行。使用事务的原因:保证数据的安全有效。事务的四个特...

oracle使用游标

其实游标就是把查询的结果放入游标中,然后在去游标里边读取。相当于使用游标做了一个中转,而游标是可以作为参数进行传递...

oracle程序包

当项目越来越大的时候,数据库中的函数,存储过程等越来越多。为了方便管理,Oracle建议使用程序包的管理机制。实现业务模...

oracle中MERGE INTO,for,start with,decode用法

1. MERGEINTO:MERGEINTOT_TD_BU_MODIFY_NOTICE_LSA USING( selectMODIFY_NOTICE_ID,REJECT_REASONfromT_TD_BU_MODIFY_NOT...

oracle+命令

oracle常用命令SQLPLUS进入oracle撤销命令revoke 权限 form 用户名show user查询当前登录账户锁定账户命令Alter user 用户...

oracle 11g数据库的安装+空间管理

如果你在圣诞节没有收到礼物,请不要伤心也不要难过,因为接下来还有元旦,春节,还有情人节,还有元宵节......慢慢的你就...

oracle--常用命令、条件语句、循环语句、SQL函数

Oracle常用命令1、登录数据库默认账户 默认密码 拥有权限sys 123456 as sysdba 拥有数据库的最高权限system ...

oracle数据库的基本操作

Oracle数据库Oracle Database,又名Oracle RDBMS,或简称Oracle。是甲骨文公司的一款关系数据库管理系统。它是在数据库领域...

oracle数据库的认识和基本使用

推荐一个Oracle数据库的一个学习网站:http://www.oraclejsq.com/article/010100110.html一、对Oracle数据库的认识1、数据...

oracle操作

Oracle数据库操作1、创建数据库create database databasename2、删除数据库drop database dbname3、备份数据库完全备份exp ...

oracle 安装和常用的命令

Oracle 安装如下:https://jingyan.baidu.com/article/f79b7cb32095f79144023eae.html默认账户Sys 123456 as sysdba 数据...

oracle数据库的同义词与视图

同义词概念:同义词顾名思义,是数据库方案对象的一个别名。这里的数据库方案对象指表、视图、序列、存储过程、包等。创建...