`
T240178168
  • 浏览: 367334 次
  • 性别: Icon_minigender_1
社区版块
存档分类
最新评论

oracle case ,loop,while ,for简单实例

阅读更多

select * from employees emp  where emp.salary = 3000
if语句
begin
if (10>50) then
   dbms_output.put_line('da yu');
else
  dbms_output.put_line('bu da yu');
  
end if;
end;
select * from employees emp where emp.employee_id=119
where
emp.department_id=30 and
salary < 250

DECLARE
v_sal number(10);
v_empid number(4);
BEGIN
      v_empid := &nid ;  
      SELECT emp.salary into v_sal
      FROM employees emp
      WHERE emp.employee_id=v_empid;
      IF v_sal <= 2500 THEN
         UPDATE employees set salary=salary+200 WHERE employee_id=v_empid;
      ELSIF v_sal>2500 and v_sal<3000 then
         UPDATE employees set salary=salary+100 WHERE employee_id=v_empid;
      ELSE
         dbms_output.put_line('没有在加薪范围');     
      END IF;
EXCEPTION
    WHEN no_data_found THEN
         dbms_output.put_line('没有找到改员工!');
     
END;



------------case 单值 等值比较----------------------

declare
str number;
begin
  str:=&str;
  case str
    when 60 then
       dbms_output.put_line('不及格');
    when 70 then
       dbms_output.put_line('优良');
    when 80 then
       dbms_output.put_line('优秀');
    else
       dbms_output.put_line('其他');
  end case;
end;
------------case 范围 条件比较----------------------
declare
num number(6,2);
begin
  num:=&num;
  case
    when num<60 then
       dbms_output.put_line('不及格');
    when num<80 then
       dbms_output.put_line('优良');
    when num<100 then
       dbms_output.put_line('优秀');
  end case;
  exception
  when case_not_found then
   dbms_output.put_line('没有符合要求的case 语句:'||sqlerrm);
end;
--------------case 表达式---------------------------
--用在赋值语句中
declare
num number(5);
val varchar2(50);
begin
num:=&num;
val:=case num
     when 1 then  '第一组'
     when 2 then  '第二组'
     when 3 then  '第三组'
     end || '是好样的' ;
dbms_output.put_line(val);
end;

--用在select 语句当中
select * from employees where employee_id=109
declare
str varchar2(200);
begin
select case
       when salary between 2000 and 3000 then
           '普通白领'
       when salary between 6000 and 10000 then
           '公司金领'
       else
          '职员'
       end kkk into str from employees where employee_id=109;
  dbms_output.put_line(str);
end;


select emp.first_name,emp.phone_number, case
       when emp.salary between 2000 and 3000 then
           '普通白领'
       when emp.salary between 6000 and 10000 then
           '公司金领'
       else
          '职员'
       end as 职员类型
       from employees emp
--------------------goto  null---------------------------

declare
num number(5):=10;
begin
  if num>5 then
     goto label1;
  else
    -- dbms_output.put_line('nothing');
     null;--不做任何事,其主要目的是为了确保程序结构的完整性。
  end if;
   dbms_output.put_line('welcome to you!');
  <<label1>>
     dbms_output.put_line('大于5');
 
end;
--------------------loop ------------------------------------

/*
特点:循环至少运行一次
循环语句的共同点: 都是有 loop   end loop;构成
*/
create table tmp
(
  tid number(6) primary key,
  tname varchar2(10)
)

declare
i number(6):=1;
begin
  loop 
    insert into tmp values(i,'值'||i);
    exit when i!=0;  --循环终止语句
    i:=i+1;
  end loop;
  dbms_output.put_line('数据入库完毕');
end;

select * from tmp
--------------------while ---------------------------------

create table tmp
(
  tid number(6) primary key,
  tname varchar2(10)
)
delete from tmp;

declare
i number(6):=1;
begin
  while i<=10
  loop
    insert into tmp values(i,'值'||i);
    i:=i+1;
  end loop;
  commit;
end;
---------------------for----------------------------------

/*
循环次数是确定的
*/
declare
i number(5);
j number(5);
begin
  for i in reverse 1..10
  loop
      for j in 1..i
      loop
          dbms_output.put('*');
      end loop;
      dbms_output.put_line('');
  end loop;
end;
----------------------预定义异常-------------------------------

不需要定义,不需要手动抛出
  select *
    from employees emp
    where emp.employee_id=1
declare
sal char(1);
e_integrity EXCEPTION;
PRAGMA EXCEPTION_INIT(e_integrity,-01422);
begin
    select emp.salary  into sal
    from employees emp
    where emp.employee_id<10000;
    exception
          when e_integrity then
              dbms_output.put_line('值太多:'||sqlerrm);
          when no_data_found then
               dbms_output.put_line('没有值:'||sqlerrm);
        --  when others then
          --    dbms_output.put_line('赋值出错'||sqlerrm);   
end;
----------------------非预定义------------------------
declare
  e_integrity EXCEPTION;
  PRAGMA EXCEPTION_INIT(e_integrity,-2291);
BEGIN
  UPDATE employees SET employees.department_id=10
  WHERE employees.employee_id=101;
  EXCEPTION
    WHEN e_integrity THEN
       dbms_output.put_line('该部门不存在!'||sqlerrm);
    when others then
        dbms_output.put_line('该部门不存在--!'||sqlcode||' '||sqlerrm);
END;

select * from departments

----------------------自定义---------

--手动定义,手动抛出
select * from employees where employees.employee_id=1111
declare
ex exception;
begin
    update employees set employees.salary=10000
    where employees.employee_id=1111 ;
    if sql%notfound then
       raise ex;--注意:自定义异常一定要手动抛出
    end if;
    exception
          when ex then
             
              dbms_output.put_line('没有此条数据:'||sqlerrm);
              --抛出自定义异常
              --raise_application_error(-20001,'该雇员不存在!');
          when others then
              dbms_output.put_line('赋值出错');  
    end;
   
   
    begin
              raise_application_error(-20001,'该雇员不存在!');
    end;
   
create or replace procedure Pro_test_exep
as
ex exception;
begin
    update employees set employees.salary=10000
    where employees.employee_id=1111 ;
    if sql%notfound then
       raise ex;
    end if;
    exception
          when ex then
             
              dbms_output.put_line('没有此条数据:'||sqlerrm);
              --抛出自定义异常
              raise_application_error(-20001,'该雇员不存在!');
          when others then
              dbms_output.put_line('赋值出错');  
    end;
   
   
    declare
    e_integrity EXCEPTION;
    PRAGMA EXCEPTION_INIT(e_integrity,-20001);
    begin
         Pro_test_exep;
         exception
         when e_integrity then
              dbms_output.put_line('该雇员不存在'); 
    end;
分享到:
评论

相关推荐

    Oracle PLSQL实例精解(原书第4版) 源码下载

    1. **基础语法**:包括变量声明、条件语句(IF-THEN-ELSIF, CASE)、循环结构(WHILE, FOR, LOOP)、异常处理(BEGIN-EXCEPTION-END)等。 2. **数据类型**:理解Oracle支持的基本数据类型,如NUMBER、VARCHAR2、...

    ORACLE_PL_SQL实例精解(高清中文).pdf

    2. 程序控制结构:使用条件控制(IF...THEN...ELSE, CASE, LOOP等)和迭代控制(FOR...IN, WHILE...LOOP等)来实现复杂的逻辑处理和数据操作。 3. 错误处理与异常:书中详细介绍了如何在PL/SQL代码中使用异常处理...

    oracle数据库 sql 和pl/sql实例教程

    5. **控制流语句**:包括IF-THEN-ELSIF-ELSE、CASE语句、LOOP、WHILE、FOR循环,以及EXIT和CONTINUE语句,它们用于实现条件判断和循环逻辑。 6. **游标**:在PL/SQL中,游标用于处理查询结果集,允许你逐行处理数据...

    Oracle 10g 系统管理员简明教程目录

    * 循环语句:包括 LOOP…END LOOP 循环、WHILE 循环、FOR 循环、标号和 GOTO 语句等方面的介绍。 * 游标的使用:包括处理显式游标、游标属性、处理隐式游标、简单游标循环、WHILE 循环处理游标、游标 FOR 循环等方面...

    Oracle.PL.SQL.For.Dummies.Jun.2006

    2. **流程控制结构**:提供了如IF...ELSE、CASE、LOOP、WHILE...END LOOP等流程控制语句,使得程序逻辑更加灵活。 3. **异常处理**:PL/SQL具有内置的异常处理机制,可以捕获并响应运行时错误,提高程序的健壮性和可...

    Oracle数据库课件

    PL/SQL支持流程控制语句(IF、LOOP、WHILE等)、异常处理、游标等特性,是Oracle数据库应用开发的重要工具。 五、数据库配置与管理 Oracle数据库的配置包括初始化参数设置、表空间创建、用户和权限管理等。数据库...

    Oracle数据库基础教程:入门其实很简单

    - 循环结构:LOOP、WHILE等循环语句的使用。 - 异常处理:EXCEPTION处理块的使用。 #### 三、Oracle数据库对象 1. **视图**: - 视图的概念:了解视图的作用及其实现原理。 - 创建视图:如何使用CREATE VIEW...

    Oracle11g完全学习手册ppt

    - 控制流语句:IF、CASE、LOOP、WHILE等,实现条件判断和循环逻辑。 - 存储过程和函数:创建和调用存储过程及函数,提升数据库性能。 4. **索引与优化** - 索引类型:B树索引、位图索引、函数索引等,理解其工作...

    韩顺平玩转oracle视频的文档

    - **循环**:LOOP、WHILE、FOR等。 ### PL/SQL分页 这部分介绍了如何在PL/SQL中实现数据分页。 ### 例外处理 这部分讲解了如何在PL/SQL中处理异常情况。 - **处理预定义例外**:处理Oracle预先定义好的异常。 - *...

    oracle大学考试试题

    - **控制语句**:IF-THEN-ELSE、CASE、LOOP、WHILE-LOOP、FOR-LOOP等。 - **异常处理**:通过EXCEPTION块来捕获并处理程序运行过程中可能发生的错误。 #### 常用数据库函数及操作符 - **知识点**:了解并掌握...

    传统数据库笔记-思维导图知识点

    循环语句用于重复执行一组语句,包括 LOOP 语句、WHILE 语句和 FOR 语句。 案例分析 1. 输出 Hello World:使用 DBMS_OUTPUT.PUT_LINE 语句输出 Hello World。 2. 记录类型:使用 TYPE 关键字定义一个记录类型,并...

    oracle11g 之plsql

    - **循环控制**:WHILE、FOR和LOOP语句用于循环执行某段代码,可以配合EXIT和CONTINUE语句来提前退出或跳过当前循环。 4. **集合和索引表** PL/SQL提供了两种类型的集合:PL/SQL数组和PL/SQL索引表。它们可以存储...

    精通Oracle10编程

    、CASE、WHILE等)、循环(FOR、LOOP、EXIT WHEN等)以及子程序(PROCEDURE和FUNCTION)的创建。 二、PL/SQL数据类型 Oracle 10g中的PL/SQL支持多种数据类型,包括基本数据类型(如NUMBER、VARCHAR2、DATE等)、...

    Oracle数据库管理与开发培训

    - 常用的流程控制语句包括IF、CASE、LOOP、WHILE等。 - **游标**:用于处理多行记录集的数据访问机制。 - **异常处理**:处理运行时错误,确保程序的健壮性。 - **存储过程、函数和触发器**: - 存储过程:预...

    oracle PL SQL 程序设计(第5版)下册

    3. **流程控制**:包括条件语句(IF-THEN-ELSIF-ELSE)、循环(WHILE、FOR、LOOP)、CASE语句等,这些都是编写复杂逻辑的核心。 4. **集合与记录**:PL/SQL支持数组(collections)和自定义记录类型,这对于处理...

    韩顺平 oracle PPT资料

    - **循环语句**:学习LOOP、WHILE、FOR等循环控制语句。 - **控制语句**:掌握EXIT、CONTINUE等流程控制语句。 #### 16. PL/SQL分页 - **分页技术**:介绍如何使用ROWNUM等技术实现结果集的分页显示。 #### 17. ...

Global site tag (gtag.js) - Google Analytics