PL-SQL经典试题

21. 自定义异常: 更新指定员工工资,增加100;若该员工不存在则抛出用户自定义异常: no_result

 

declare

  --自定义异常                                   

  no_result exception;   

begin

  update employees set salary = salary + 100 where employee_id = 1001;

 

  --使用隐式游标, 抛出自定义异常

  if sql%notfound then

     raise no_result;

  end if;  

 

exception

 

  --处理程序抛出的异常

  when no_result then

     dbms_output.put_line('更新失败');

end;

*******************************************************************************

存储函数和过程

*******************************************************************************

[存储函数:有返回值,创建完成后,通过select function() from dual;执行]

[存储过程:由于没有返回值,创建完成后,不能使用select语句,只能使用pl/sql块执行]

 

[格式]

--函数的声明(有参数的写在小括号里)

create or replace function func_name(v_param varchar2)

--返回值类型

return varchar2

is

--PL/SQL块变量、记录类型、游标的声明(类似于前面的declare的部分)

begin

--函数体(可以实现增删改查等操作,返回值需要return)

       return 'helloworld'|| v_param;

end;

 

22.1 函数的 helloworld: 返回一个 "helloworld" 的字符串

 

create or replace function hello_func

return varchar2

is

begin

       return 'helloworld';

end;

 

执行函数

 

begin

    dbms_output.put_line(hello_func());

end;

 

或者: select hello_func() from dual;

 

22.2 返回一个"helloworld: atguigu"的字符串,其中atguigu 由执行函数时输入。

 

--函数的声明(有参数的写在小括号里)

create or replace function hello_func(v_logo varchar2)

--返回值类型

return varchar2

is

--PL/SQL块变量的声明

begin

--函数体

       return 'helloworld'|| v_logo;

end;

 

22.3 创建一个存储函数,返回当前的系统时间

create or replace function func1

return date

is

--定义变量

v_date date;

begin

-函数体

--v_date := sysdate;

    select sysdate into v_date from dual;

       dbms_output.put_line('我是函数哦');

       

       return v_date;

end;

 

执行法1:

select func1 from dual;

执行法2:

declare

  v_date date;

begin

  v_date := func1;

  dbms_output.put_line(v_date);

end;

 

23. 定义带参数的函数: 两个数相加

 

create or replace function add_func(a number, b number)

return number

is

begin

       return (a + b);

end;

 

执行函数

 

begin

    dbms_output.put_line(add_func(12, 13));

end;

或者

    select add_func(12,13) from dual;

 

24. 定义一个函数: 获取给定部门的工资总和, 要求:部门号定义为参数, 工资总额定义为返回值.

 

create or replace function sum_sal(dept_id number)

       return number

       is

       

       cursor sal_cursor is select salary from employees where department_id = dept_id;

       v_sum_sal number(8) := 0;   

begin

       for c in sal_cursor loop

           v_sum_sal := v_sum_sal + c.salary;

       end loop;       

 

       --dbms_output.put_line('sum salary: ' || v_sum_sal);

       return v_sum_sal;

end;

 

执行函数

 

begin

    dbms_output.put_line(sum_sal(80));

end;

 

25. 关于 OUT 型的参数: 因为函数只能有一个返回值, PL/SQL 程序可以通过 OUT 型的参数实现有多个返回值

 

要求: 定义一个函数: 获取给定部门的工资总和 和 该部门的员工总数(定义为 OUT 类型的参数).

要求: 部门号定义为参数, 工资总额定义为返回值.

 

create or replace function sum_sal(dept_id number, total_count out number)

       return number

       is

       

       cursor sal_cursor is select salary from employees where department_id = dept_id;

       v_sum_sal number(8) := 0;   

begin

       total_count := 0;

 

       for c in sal_cursor loop

           v_sum_sal := v_sum_sal + c.salary;

           total_count := total_count + 1;

       end loop;       

 

       --dbms_output.put_line('sum salary: ' || v_sum_sal);

       return v_sum_sal;

end;   

 

执行函数:

 

delare

  v_total number(3) := 0;

 

begin

    dbms_output.put_line(sum_sal(80, v_total));

    dbms_output.put_line(v_total);

end;

 

26*. 定义一个存储过程: 获取给定部门的工资总和(通过 out 参数), 要求:部门号和工资总额定义为参数

 

create or replace procedure sum_sal_procedure(dept_id number, v_sum_sal out number)

       is

       

       cursor sal_cursor is select salary from employees where department_id = dept_id;

begin

       v_sum_sal := 0;

       

       for c in sal_cursor loop

           --dbms_output.put_line(c.salary);

           v_sum_sal := v_sum_sal + c.salary;

       end loop;       

 

       dbms_output.put_line('sum salary: ' || v_sum_sal);

end;

[执行]

declare

     v_sum_sal number(10) := 0;

begin

     sum_sal_procedure(80,v_sum_sal);

end;

 

27*. 自定义一个存储过程完成以下操作:

对给定部门(作为输入参数)的员工进行加薪操作, 若其到公司的时间在

(? , 95) 期间,    为其加薪 %5

[95 , 98)                 %3                                                                   [98, ?)                  %1

得到以下返回结果: 为此次加薪公司每月需要额外付出多少成本(定义一个 OUT 型的输出参数).

 

create or replace procedure add_sal_procedure(dept_id number, temp out number)

 

is

 

       cursor sal_cursor is select employee_id id, hire_date hd, salary sal from employees where department_id = dept_id;

       a number(4, 2) := 0;

begin

       temp := 0;       

 

       for c in sal_cursor loop

           a := 0;    

       

           if c.hd < to_date('1995-1-1', 'yyyy-mm-dd') then

              a := 0.05;

           elsif c.hd < to_date('1998-1-1', 'yyyy-mm-dd') then

              a := 0.03;

           else

              a := 0.01;

           end if;

           

           temp := temp + c.sal * a;

           update employees set salary = salary * (1 + a) where employee_id = c.id;

       end loop;       

end;

 

*******************************************************************************

触发器

*******************************************************************************

一个helloworld级别的触发器

create or replace trigger hello_trigger

after

update on employees

--for each row

begin

    dbms_output.put_line('hello...');

    --dbms_output.put_line('old.salary:'|| :OLD.salary||',new.salary'||:NEW.salary);

end;

然后执行:update employees set salary = salary + 1000;

 

28. 触发器的 helloworld: 编写一个触发器, 在向 emp 表中插入记录时, 打印 'helloworld'

 

create or replace trigger emp_trigger

after

insert on emp

for each row

begin

       dbms_output.put_line('helloworld');

end;

 

29. 行级触发器: 每更新 employees 表中的一条记录, 都会导致触发器执行

 

create or replace trigger employees_trigger

after

update on employees

for each row

begin

       dbms_output.put_line('修改了一条记录!');

end;

 

语句级触发器: 一个 update/delete/insert 语句只使触发器执行一次

 

create or replace trigger employees_trigger

after

update on employees

begin

       dbms_output.put_line('修改了一条记录!');

end;

 

30. 使用 :new, :old 修饰符

 

create or replace trigger employees_trigger

after

update on employees

for each row

begin

       dbms_output.put_line('old salary: ' || :old.salary || ', new salary: ' || :new.salary);

end;

 

31. 编写一个触发器, 在对 my_emp 记录进行删除的时候, 在 my_emp_bak 表中备份对应的记录

 

1). 准备工作:

create table my_emp as select employee_id id, last_name name, salary sal from employees;

 

create table my_emp_bak as select employee_id id, last_name name, salary sal from employees where 1 = 2

 

2).

create or replace trigger bak_emp_trigger

       before delete on my_emp

       for each row

       

begin

       insert into my_emp_bak values(:old.id, :old.name, :old.sal);

end;

 

本教程由尚硅谷教育大数据研究院出品,如需转载请注明来源。
 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值