oracle存储过程和触发器

来源:互联网 发布:皓月乒乓 淘宝店铺 编辑:程序博客网 时间:2024/05/17 03:53

OracleScott用户

1存储过程示例:为指定的职工在原工资的基础上长10%的工资

SQL> create or replace procedure raiseSalary(empid in number)

    as

    pSal emp.sal%type;

    begin

    select sal into pSal from emp where empno=empid;

    update emp set sal = sal*1.1 where empno=empid;

    dbms_output.put_line('员工号:' || empid || '涨工资前

    ' || psal || '涨工资后' || psal*1.1);

    end;

   /

 

Procedure created

 

SQL> set serveroutput on

SQL> exec raisesalary(7369);

 

员工号:7369涨工资前

800涨工资后880

 

PL/SQL procedure successfully completed

2、存储函数示例:查询某职工的年收入。

SQL> /**/

    /* 

    查询某职工的总收入

    */

    create or replace function queryEmpSalary(empid in number)

    return number

    as

    pSal number; --定义变量保存员工的工资

    pComm number; --定义变量保存员工的奖金

   begin

   select sal,comm into psal,pcomm from emp where empno = empid;

   return psal*12+nvl(pcomm,0);

   end;

   /

 

Function created

 

SQL> declare

    v_sal number;

    begin

    v_sal:=queryEmpSalary(7934);

    dbms_output.put_line('salary is:'|| v_sal);

    end;

    /

 

salary is:15600

 

PL/SQL procedure successfully completed

 

SQL> begin

    dbms_output.put_line('salary is:'|| queryEmpSalary(7934));

    end;

    /

 

salary is:15600

 

PL/SQL procedure successfully completed

3、创建触发器示例1:限制非工作时间向数据库插入数据

SQL> create or replace

    trigger securityEmp

    before insert on emp

    declare

    begin

    if to_char(sysdate,'day')in('星期四','星期六','星期日')

    or to_number(to_char(sysdate,'hh24'))not between 8 and 18 then 

    raise_application_error(-20001,'不能在非工作时间插入数据。');

    end if;

   end;

   /

 

Trigger created

4、创建触发器示例2:确认数据(检查emp表中sal 的修改值不低于原值)

SQL> create or replace trigger checkSal

    before update of sal on emp

    for each row

    declare

    begin

    if :new.sal<:old.sal then

    raise_application_error(-20001,'更新后的薪水比更新前小');

    end if;

    end;

   /

 

Trigger created

0 0
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 天冷手指关节疼怎么办 未满一年驾龄上高速违章怎么办 榴莲太生剥开了怎么办 榴莲开了没熟怎么办 榴莲打开了没熟怎么办 榴莲开口了没熟怎么办 榴莲没熟打开了怎么办 不熟的榴莲没熟怎么办 打开的榴莲没熟怎么办 开了的榴莲没熟怎么办 榴莲剥出来没熟怎么办 榴莲剥开了没熟怎么办 榴莲买回来没熟怎么办 整个的榴莲熟了怎么办 买的榴莲有点生怎么办 剥开的榴莲肉硬怎么办 买了钻戒后悔了怎么办 钻戒小钻石掉了怎么办 2岁宝宝爱看电视怎么办 笛子中音3有点高怎么办 长笛嘴型,杂音多怎么办 房子户型图没了怎么办 微信显示无响应怎么办 领完失业金档案怎么办 qq占了2g内存怎么办 吉他的弦断了怎么办 机械键盘轴坏了怎么办 钢琴的琴键坏了怎么办 连供管子有空气怎么办 刚买的竹笛炸音怎么办 热水进钢琴里了怎么办 木质地板泡水了怎么办 擦玻璃器吸住了怎么办 e人e本反应慢怎么办 e人e本死机了怎么办 细菌感染引起的咳嗽怎么办 裤子上有pvc胶水怎么办 注塑机开不了膜怎么办 彩色墨镜脱膜了怎么办 头盔镜片磨花了怎么办 羊毛呢大衣起球怎么办