`
king_tt
  • 浏览: 2270712 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

Oracle PL/SQL编程

 
阅读更多

一、PL/SQL简介

  1、概念:PL/SQL是Oracle在标准SQL语言上的过程性扩展。

  2、优点和特性

  •   提高应用程序的运行性能
  •   提供模块化的程序设计功能
  •   允许定义标示符
  •   具有过程语言控制结构
  •   具备良好的兼容性
  •   处理运行错误

二、PL/SQL语言基础

  1、编写PL/SQL应用程序时,只能嵌入select语句、DML语句和事务控制语句,不能嵌入DDL语句,DCL语句。

  2、PL/SQL块

  基本结构如下所示:

复制代码
1 declare 
2 /*定义部分-变量、常量、游标、异常、例解*/
3 begin
4 /*执行部分-PL/SQL,SQL 语句*/
5 exception
6     /*异常处理部分-处理运行错误*/
7 end;//块结束标志
复制代码

  3、PL/SQL数据类型(常用)

  •   标量类型(常用char,varchar2,number,date,timestamp,boolean)
  •   属性类型(常用%type,%rowtype)
  • 其他record,table,varray

  4、注释:"--"单行注释,"/*...*/"多行注释

三、PL/SQL控制结构

  1、条件分支语句

  用法如下所示:

复制代码
 1 --示例一
 2 declare
 3  v_sal number(6,2);
 4 begin
 5   select sal into v_sal from scott.emp where ename=trim('&ename');
 6   if v_sal<2000 then
 7     update scott.emp set sal=v_sal+200 where ename=trim('&ename');
 8   end if;
 9 end;
10 
11 --示例二
12 declare 
13   v_dep number(6,2);
14   v_sal number(6,2);
15 begin
16   select deptno,sal into v_dep,v_sal from scott.emp where ename=trim('&ename');
17   if v_dep=10 then
18      update scott.emp set sal=v_sal+200 where deptno=10;
19   elsif v_dep=20 then
20      update scott.emp set sal=v_sal+100 where deptno=20;
21   else 
22      update scott.emp set sal=v_sal+50 where deptno!=10 and deptno!=20;
23   end if;
24 end;
复制代码

  2、case语句

  具体用法如下所示:

复制代码
 1 --示例一
 2 declare 
 3      v_deptno scott.emp.deptno%type;
 4 begin
 5   v_deptno:=&deptno;
 6   case v_deptno
 7     when 10 then
 8       update scott.emp set comm=100 where deptno=v_deptno;
 9     when 20 then
10       update scott.emp set comm=80 where deptno=v_deptno;
11     when 30 then
12       update scott.emp set comm=60 where deptno=v_deptno;
13     else
14       dbms_output.put_line('该部门不存在!');
15    end case;
16 end;
17 
18 --示例二
19 declare 
20    v_sal scott.emp.sal%type;
21    v_ename scott.emp.ename%type;
22 begin
23   select ename,sal into v_ename,v_sal from scott.emp where empno=&empno;
24   case
25     when v_sal<2000 then
26       update scott.emp set comm=100 where ename=v_ename;
27     when v_sal<3000 then
28       update scott.emp set comm=80 where ename=v_ename;
29     when v_sal<4000 then
30       update scott.emp set comm=50 where ename=v_ename; 
31     end case;
32 end;
复制代码

  3、循环语句

  具体用法如下所示:

复制代码
 1 --基本循环
 2 declare 
 3   i int:=1;
 4 begin
 5   loop   
 6     dbms_output .put_line(i);
 7     i:=i+1;
 8     exit when i=10;
 9   end loop;
10 end;
11 
12--while循环
13 declare 
14   i int:=1;
15 begin
16   while i<=10 loop
17     dbms_output.put_line(i);
18     i:=i+1;
19     end loop;
20 end;
21 
22--for循环
23 declare 25 begin
26   for i in 1..10 loop
27     dbms_output.put_line(i);
28     end loop;
29 end;
复制代码

四、异常处理

  1、分类:预定义异常,非预定义异常,自定义异常  

  2、常见预定义异常

  •   case_not_found:when子句中没包含必须的条件分支,又无else子句时触发。
  •   cursor_already_open:打开已打开的游标时触发。
  •   invalid_number:字符转换为数字失败时触发。
  •   too_many_rows:执行select into 子句时,返回超过一行触发。
  •   zero_divide:除数为0时触发。
  •   no_data_found:执行select into未返回行,或者引用了索引表未初始化元素时触发。

  具体用法如下所示:

复制代码
 1 --预定义异常处理
 2 eclare 
 3     v_ename scott.emp.ename%type;
 4 begin
 5   select ename into v_ename from scott.emp where empno=&empno;
 6   dbms_output.put_line(v_ename);
 7   exception
 8     when no_data_found then
 9       dbms_output.put_line('员工号不存在');
10 end;
11 
12 --自定义异常处理
13 declare 
14    e_integerity exception;--定义非预定义异常
15    e_no_employee exception;--定义自定义异常
16    pragma exception_init(e_integerity,-2291);--关联非预定义异常
17 begin
18    update scott.emp set deptno=40 where empno=-1;
19       if sql%notfound then
20         raise e_no_employee;--显示触发自定义异常
21       end if;
22    exception
23       when e_integerity then
24         dbms_output.put_line('该部门不存在!');
25       when e_no_employee then
26         dbms_output.put_line('该员工不存在!');
27 end;
复制代码

五、游标(处理select语句返回的多行数据)

  (1)显示游标(查询结构超过一行)在PL/SQL块的声明部分申明,在执行部分或异常处理部分打开游标,提取数据,关闭游标。

  1、定义游标(declare cursor cursor_name is select_statement;)

  2、打开游标(open cursor_name;)

  3、提取数据

1 --每次提取一行
2 fetch cursot_name into variable1,variable2,..--variable :接收游标数据的变量
3--每次提取多行
4 .或 fetch cursor_name into bulk collect into collect1,collect2...--collect :接收游标结果的集合变量

  4、关闭游标(close cursor_name;)

  5、显示游标属性

  •   %isopen:判断游标是否打开,打开返回true,否则false;
  •   %found:是否从结果集中提取了数据。提取了数据返回true,否则false;
  • %not found:与%found相反;
  • rowcount:当前行数;

  具体用法如下所示:

复制代码
 1 declare 
 2   cursor emp_cursor
 3 is
 4   select ename,sal from scott.emp where deptno=20;
 5   v_ename scott.emp.ename%type;
 6   v_sal scott.emp.sal%type;
 7 begin
 8   open emp_cursor;
 9   loop
10     fetch emp_cursor into v_ename,v_sal;
11     exit when emp_cursor%notfound;
12     dbms_output.put_line(v_ename||':'||v_sal);
13   end loop;
14   close emp_cursor;
15 end;
16  
17 --参数游标
18 declare 
19   cursor emp_cursor(cno number)
20 is
21   select ename,sal from scott.emp where deptno=cno;
22   v_ename scott.emp.ename%type;
23   v_sal scott.emp.sal%type;
24 begin
25   if not emp_cursor%isopen then
26     
27   open emp_cursor(10);
28   end if;
29   loop
30     fetch emp_cursor into v_ename,v_sal;
31     exit when emp_cursor%notfound;
32     dbms_output.put_line(v_ename||':'||v_sal);
33   end loop;
34   close emp_cursor;
35 end;
36 
37 --使用游标更新或删除数据
38 declare 
39   cursor emp_cursor
40 is
41   select ename,sal from scott.emp for update of sal;--在sal列上加上共享锁
42   v_ename scott.emp.ename%type;
43   v_sal scott.emp.sal%type;
44 begin
45   open emp_cursor;
46   loop
47     fetch emp_cursor into v_ename,v_sal;
48     exit when emp_cursor%notfound;
49     if v_sal<2500 then
50       update scott.emp set sal=sal+150 where current of emp_cursor;
51     end if;
52   end loop;
53   close emp_cursor;
54 end;
55 --游标的for循环语法
56 for record_name in curso_name loop
57     statement1;
58     statement2;
59 ...
60 end loop;  --record_name:Oracle 隐式定义的记录变量名
61 --游标的for循环
62 declare 
63   cursor emp_cursor
64   is select ename from scott.emp where deptno=20;
65 begin
66   for o in emp_cursor loop
67     dbms_output.put_line(''||emp_cursor%rowcount ||'员工'||o.ename);
68     end loop;
69 end;
70 
71 
72 --不使用游标属性的for循环
73 begin
74   for o in (select ename from scott.emp where deptno=20)
75    loop
76      dbms_output.put_line(o.ename);
77    end loop;
78 end;
79  
80 select * from scott.emp;
复制代码

分享到:
评论

相关推荐

    oracle pl/sql编程

    ### Oracle PL/SQL编程知识点详解 #### 一、SQL与PL/SQL概述 - **SQL简介**:SQL(Structured Query Language)即结构化查询语言,是数据库管理领域中最广泛使用的标准化语言之一。由IBM最初提出并发展起来,后被...

    Oracle PL/SQL编程及最佳实践

    Oracle PL/SQL 编程及最佳实践 Oracle PL/SQL 是一种高级编程语言,用于开发 Oracle 数据库中的存储过程、函数和触发器。PL/SQL language 提供了强大的编程能力,可以实现复杂的业务逻辑,并且与 Oracle 数据库紧密...

    oracle pl/sql 编程

    《Oracle Database 10g PL/SQL编程》一书由Scott Urman、Ron Hardman和Michael McLaughlin共同编写,由McGraw-Hill/Osborne出版,是Oracle数据库编程领域的一部经典之作。该书深入浅出地介绍了Oracle Database 10g...

    Oracle PL/SQL编程详解

    Oracle PL/SQL编程详解是Oracle数据库开发人员必须掌握的技术之一。Oracle PL/SQL是一种用于Oracle数据库系统的程序设计语言,它是SQL语言的扩展,包含了许多能增加程序可读性和模块化的特性。PL/SQL代码被编译成...

    Oracle PL/SQL编程基础

    ### Oracle PL/SQL编程基础详解 #### 一、PL/SQL概述 PL/SQL,即Procedural Language for SQL,是Oracle数据库专有的扩展性语言,用于增强SQL的功能,使其具备编程语言的能力。通过PL/SQL,开发者可以编写复杂的...

    Oracle PL/SQL学习官方教材

    Oracle PL/SQL是一种强大的编程语言,它将SQL与过程编程语言的特性相结合,为数据库开发提供了丰富的功能。...通过深入学习这本教材,你将能够掌握Oracle PL/SQL编程,从而有效地设计和实现数据库解决方案。

    Oracle PL/SQL 编程手册,chm

    Oracle PL/SQL 编程手册Oracle PL/SQL 编程手册

    绝对好的 oracle pl/sql 编程

    ### 绝对好的 Oracle PL/SQL 编程 #### 一、PL/SQL 程序设计简介 ##### 1.1 SQL 与 PL/SQL **1.1.1 什么是 PL/SQL?** PL/SQL(Procedure Language for SQL)是一种专门为 Oracle 数据库设计的过程化语言。它结合...

    oracle pl/sql从入门到精通 配套源代码

    Oracle PL/SQL是一种强大的编程语言,它结合了SQL(结构化查询语言)的数据库操作功能与PL/SQL的程序设计特性,广泛应用于Oracle数据库的开发和管理。这本书"Oracle PL/SQL从入门到精通"的配套源代码,显然是为了...

    Oracle PL/SQL programming(5th Edition)

    《Oracle PL/SQL Programming》(第五版)是一本全面而深入的指南,旨在帮助读者掌握Oracle PL/SQL编程语言的核心技术和最佳实践。无论是对于初学者还是有经验的开发人员,这本书都是一个宝贵的资源。通过阅读本书,...

    Oracle PL/SQL程序设计(第5版)(套装上下册)

    《Oracle PL/SQL程序设计(第5版)(套装上下册)》基于Oracle数据库11g,从PL/SQL编程、PL/SQL程序结构、PL/SQL程序数据、PL/SQL中的SQL、PL/SQL应用构建、高级PL/SQL主题这6个方面详细系统地讨论了PL/SQL以及如何...

    Oracle PL/SQL实战(待续)

    Oracle PL/SQL是一种强大的编程语言,它结合了SQL的数据处理能力与PL的程序设计特性,是Oracle数据库系统中用于创建存储过程、函数、触发器和包的主要工具。在这个"Oracle PL/SQL实战(待续)"的主题中,我们将深入...

    oracle pl/sql 实例精解(中文原书第4版)

    本书是一本逐步分解的,详尽的pl/sql编程教程,使用真实场景的试验、范例和练习来介绍读者所需的pl/sql编程技能,涵盖oracle 11g的最新特性。作者的写作手法源自于在哥伦比亚大学教授pl/sql编程技术的经验,深度...

    Oracle PL/SQL程序设计(第5版)(上下册)

    #### 一、PL/SQL编程基础 - **PL/SQL简介**:PL/SQL(Procedural Language for SQL)是Oracle数据库的一种内嵌式过程化语言,用于增强SQL的功能。它允许在SQL查询的基础上添加控制流语句、变量定义、错误处理等特性...

    ORACLE PL/SQL从入门到精通

    循环语句是PL/SQL编程中用来重复执行一组语句的结构,包括loop、while、for三种形式,它们各自有不同的使用场景和语法。 分支条件语句在PL/SQL中用来根据不同的条件执行不同的代码分支,主要包括CASE表达式和if-...

    Oracle PL/SQL 实例精解(第4版涵盖Oracle 11g)+源码脚本

    Oracle PL/SQL是一种强大的编程语言,它将关系数据库的强大功能与结构化编程的优点结合在一起,是Oracle数据库系统中不可或缺的一部分。在"Oracle PL/SQL 实例精解(第4版涵盖Oracle 11g)+源码脚本"中,读者可以深入...

    Oracle PL/SQL实例精解 数据库建立代码

    Oracle PL/SQL是一种强大的编程语言,它结合了SQL的数据库操作能力和PL/SQL的结构化编程特性,使得数据库开发者能够创建复杂的应用程序和数据库逻辑。在"Oracle PL/SQL实例精解 数据库建立代码"中,我们将深入探讨...

    Oracle PL-SQL编程详解.pdf

    Oracle PL/SQL编程详解主要涵盖了数据库编程的关键方面,旨在帮助开发者深入理解如何利用PL/SQL进行高效、模块化的数据库应用开发。PL/SQL是Oracle数据库系统专用的一种过程化编程语言,它结合了SQL的查询能力并扩展...

    Oracle PL/SQL专家指南-高级PL/SQL解决方案的设计与开发

    《Oracle PL/SQL专家指南-高级PL/SQL解决方案的设计与开发》是一本深入探讨Oracle数据库中的PL/SQL编程的专业书籍。PL/SQL是Oracle数据库特有的编程语言,它结合了SQL的查询能力与过程式编程语言的功能,使得数据库...

Global site tag (gtag.js) - Google Analytics