oracle--PLSQL的应用实例

PLSQL的应用实例

一、统计每年入职的员工人数

分析:

SQL语句:
select to_char(hiredate,'yyyy') from emp;
---> 集合 ---> 光标 ---> 循环  ---> 退出条件:notfound

变量:1. 初始值  2. 最终得到
每年入职的员工人数:
count80 number := 0;
count81 number := 0;
count82 number := 0;
count87 number := 0;

解:

set serveroutput on

declare
  cursor cemp is select to_char(hiredate,'yyyy') from emp;
  phiredate varchar2(4);
  
  --每年入职的员工人数:
  count80 number := 0;
  count81 number := 0;
  count82 number := 0;
  count87 number := 0;
begin
  open cemp;
  loop
    --取一个员工的入职年份
    fetch cemp into phiredate;
    --退出条件:notfound
    exit when cemp%notfound;
    
    --判断年份
    if phiredate = '1980' then count80:=count80+1;
      elsif phiredate = '1981' then count81:=count81+1;
      elsif phiredate = '1982' then count82:=count82+1;
      else count87:=count87+1;
    end if;
  end loop;
  close cemp;
  
  dbms_output.put_line('Total:'||(count80+count81+count82+count87));
  dbms_output.put_line('1980:'||count80);
  dbms_output.put_line('1981:'||count81);
  dbms_output.put_line('1982:'||count82);
  dbms_output.put_line('1987:'||count87);
end;

二、使用scott用户下的emp表:

为员工涨工资。从最低工资调起每人涨10%,但工资总额不能超过5万元,请计算涨工资的人数和涨工资后的工资总额,并输出涨工资人数及工资总额。

分析:

SQL语句:
select empno,sal from emp order by sal;
---> 光标 ---> 退出:1. 总额 > 5w   2. notfound

变量:1. 初始值  2. 最终得到
涨工资的人数: countEmp number := 0;
涨后的工资总额: salTotal number;
1. select sum(sal) into salTotal from emp;
2. 涨后=涨前 + sal * 0.1

解:

set serveroutput on
declare
  cursor cemp is select empno,sal from emp order by sal;
  pempno emp.empno%type;
  psal   emp.sal%type;
  --涨工资的人数: 
  countEmp number := 0;
  --涨后的工资总额: 
  salTotal number;
begin
  --得到初始的工资总额
  select sum(sal) into salTotal from emp;
  
  open cemp;
  loop
    --1. 总额 > 5w
    exit when salTotal > 50000;
    --取一个员工
    fetch cemp into pempno,psal;
    --2. notfound
    exit when cemp%notfound;
    
    --涨工资
    update emp set sal=sal*1.1 where empno=pempno;
    --人数+1
    countEmp := countEmp + 1;
    --2. 涨后=涨前 + sal * 0.1
    salTotal := salTotal + psal * 0.1;

  end loop;
  close cemp;
  
  commit;
  dbms_output.put_line('人数:'||countEmp||'   总额:'||salTotal);
  
end;

三、

用PL/SQL语言编写一程序,实现按部门分段(6000以上、(6000,3000)、3000以下)统计各工资段的职工人数、以及各部门的工资总额(工资总额中不包括奖金)

创建一张表来保存数据:

create table msg
(deptno number,
 count1 number,
 count2 number,
 count3 number,
 saltotal number);

分析:

SQL语句:
部门: select deptno from dept;
部门中员工的薪水:select sal from emp where deptno=???


变量:1. 初始值  2. 最终得到
每个段的人数:
count1 number; count2 number; count3 number;
部门的工资总额: salTotal number := 0;
1.select sum(sal) into salTotal from emp where deptno=???
2.累加

解:

set serveroutput on
declare
  --部门
  cursor cdept is select deptno from dept;
  pdeptno dept.deptno%type;
  
  --部门中员工的薪水
  cursor cemp(dno number) is select sal from emp where deptno=dno;
  psal emp.sal%type;
  --每个段的人数:
  count1 number; count2 number; count3 number;
  --部门的工资总额: 
  salTotal number := 0;
begin
  open cdept;
  loop
    --取一个部门
    fetch cdept into pdeptno;
    exit when cdept%notfound;
    
    --初始化
    count1:=0;count2:=0;count3:=0;
    --部门的工资总额
    select sum(sal) into salTotal from emp where deptno=pdeptno;
    
    --取部门中员工的薪水
    open cemp(pdeptno);
    loop
      --取一个员工
      fetch cemp into psal;
      exit when cemp%notfound;
      
      --判断
      if psal < 3000 then count1:=count1+1;
        elsif psal>=3000 and psal<6000 then count2:=count2+1;
        else count3:=count3+1;
      end if;
    end loop;
    close cemp;
    
    --保存结果
    insert into msg values(pdeptno,count1,count2,count3,nvl(saltotal,0));

  end loop;
  close cdept;
  
  commit;
  dbms_output.put_line('完成');
end;

四、

用PLSQL语言编写一个程序。按系(系名)分段统计(成绩小于60分,60-85分, 85分以上)“大学物理”课程各分数段的学生人数,及各系学生的平均成绩。
提示:可建立一张新表,存放统计信息。

参考运行结果:

结果.png

分析:

--建立存放数据的结构表:
create table msg
(cname char(20),
 dname char(30),
 seg_1 number,
 seg_2 number,
 seg_3 number,
 avggrade number(4,2)
 );

--利用光标循环处理数据,并把处理结果写到结果表中:

答案:

方式一:

declare 
  cursor c1 is select distinct dno,dname from dep order by dno;
  cursor c2(c_name char) is select student.dno,grade,course.cname from student,dep,sc,course 
                            where student.dno=dep.dno and student.sno=sc.sno and course.cno=sc.cno and cname=c_name  order by dno;
  tempcname char(20);
  stu_num1 number;
  stu_num2 number;
  stu_num3 number;
  stu_dno dep.dno%type;
  stu_grade sc.grade%type;
  avggrade number;
  people number;
begin
  open c2('大学物理');
  fetch c2 into stu_dno,stu_grade,tempcname;
  for r1 in c1
  loop
     people:=0;
     stu_num1:=0;
     stu_num2:=0;
     stu_num3:=0;
     avggrade:=0;
     while r1.dno=stu_dno
     loop
        people:=people+1;
        avggrade:=(avggrade*(people-1)+stu_grade)/people;
        if stu_grade<60 then stu_num1:=stu_num1+1;
        elsif stu_grade<85 and stu_grade>=60 then stu_num2:=stu_num2+1;
        else stu_num3:=stu_num3+1;
        end if;
  
        fetch c2 into stu_dno,stu_grade,tempcname;
        exit when c2%notfound;
     end loop;
     
     insert into msg values(tempcname,r1.dname,stu_num1,stu_num2,stu_num3,avggrade); 
  end loop;
commit;
end; 

方式二:

declare
   cursor cdep is select distinct dno,dname from dep order by dno;
   cursor cstudent(c_name char,d_no char) is select grade from sc 
                                             where sno in (select distinct sno from student where dno=d_no) 
                                             and cno in (select distinct cno from course where cname=c_name);
   pcName char(8);
   pdno dep.dno%type;
   pdname dep.dname%type;

   stu_num1 number;
   stu_num2 number;
   stu_num3 number;
   stu_grade sc.grade%type;
   sumGrade number;
   people   number;
begin
   pcName := '大学物理';
   open cdep;
   loop
     fetch cdep into pdno,pdname;
     exit when cdep%notfound;
     people:=0;
     stu_num1:=0;
     stu_num2:=0;
     stu_num3:=0;
     sumGrade:=0;
     open cstudent(pcName,pdno);
     loop 
         fetch cstudent into stu_grade;
         exit when cstudent%notfound;
         if stu_grade<60 then stu_num1:=stu_num1+1;
           elsif stu_grade<85 and stu_grade>=60 then stu_num2:=stu_num2+1;
           else stu_num3:=stu_num3+1;
         end if;     
         sumGrade := sumGrade+stu_grade;
         people := people + 1;
     end loop;
     close cstudent;
   
     if people>0 then
        insert into msg values(pcName,pdname,stu_num1,stu_num2,stu_num3,sumGrade/people);    
     end if;
   
 end loop;
 close cdep;
commit;
end;
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,293评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,604评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,958评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,729评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,719评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,630评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,000评论 3 397
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,665评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,909评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,646评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,726评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,400评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,986评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,959评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,197评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,996评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,481评论 2 342

推荐阅读更多精彩内容