- 浏览: 69674 次
- 性别:
- 来自: 海南-临高
最新评论
下文为plsql编程中高级特性的应用实例。以供大家在编程时参考。
sql 代码
- /*********************************************************
- Author:qinyangzhao
- describe:PL/SQL记录记录 (type is record)
- *********************************************************/
- set serveroutput on--打开显示模式
- declare
- type cust_record_type is record(--定义记录类型
- name customer.name%type,--声明标量变量
- total ord.total%type--声明记录变量
- );
- cust_record cust_record_type;
- begin
- select a.name ,b.total ,into cust_record
- from customer a ,ord b
- where a.customer_id=b.customer_id and b.ord_id=&id;
- dbms_output.put_line('客户名'||cust_record.name);
- dbms_output.put_line('订单总额:'||cust_record.total);
- end;
- /*********************************************************
- Author:qinyangzhao
- describe:%rowtype属性(rowtype)
- *********************************************************/
- delcare
- product_record product%rowtype;
- begin
- product_record.product_id:=&id;
- product_record.description:='&description';
- insert into product values product_record;
- end;
- /*********************************************************
- Author:qinyangzhao
- describe:索引表(table)
- *********************************************************/
- declare
- type item_table_type is table of item.ename%type
- index by pls_integer;
- item_table item_table_type;
- begin
- select * bulk collect into item_table(-1)
- from item where ord_id=&id;
- dbms_output.put_line('条款编号:'||item_table(-1));
- end;
- /*********************************************************
- Author:qinyangzhao
- describe:嵌套表(table)
- *********************************************************/
- declare
- type item_table_type is table of item.ename%type;
- item_table item_table_type;
- begin
- item_table:=item_table_type('mary','mary','mary');
- select ename into item_table(2) from item
- where empno=&no;
- dbms_output.put_line('雇员名:'||item_table(2));
- end;
- /*********************************************************
- Author:qinyangzhao
- describe:变长数组(array)
- *********************************************************/
- declare
- type name_array_type is varray(20) of varchar2(30);
- type city_array_type is varray(20) of varchar2(30);
- name_array name_array_type;
- city_array city_array_type;
- begin
- select name ,city bulk collect
- into name_array,city_array from customer;
- for i in 1..name_array.count loop
- dbms_output.put_line('客户名:'||name_array(i)||',所在城市:'||city_array(i));
- end loop;
- end;
- /*********************************************************
- Author:qinyangzhao
- describe:记录表(table)
- *********************************************************/
- declare
- type item_table_type is table of item%rowtype
- index by pls_integer;
- item_table item_table_type;
- begin
- select * bulk collect into item_table
- from item where ord_id=&id;
- for i in 1..item_table.count loop
- dbms_output.put_line('条款编号:'||item_table(i).item_id||',总价:'||
- item_table(i).total);
- end loop;
- end;
- /*********************************************************
- Author:qinyangzhao
- describe:多级(varray)
- *********************************************************/
- declare
- type al_varray_type is varray(10) of int;--定义一维varray
- type nal_varray_type is varray(10) of al_varray_type;--定义二维varrary集合
- --初始化二维集合变量
- nvl nal_varrary_type:=nal_varrary_type(
- al_varray_type(58,100,102),
- al_varray_type(55,6,73),
- al_arrary_type(2,4));
- begin
- dbms_output.put_line('显示二维数组所有元素');
- for i in 1..nvl.count loop
- for j in 1..nvl(i).count loop
- dbms_output.put_line('nvl('||i||','||j||')='||nvl(i,j));
- end loop;
- end loop;
- end;
- /*********************************************************
- Author:qinyangzhao
- describe:多级(嵌套)
- *********************************************************/
- declare
- type al_table_type is table of int;--定义一维嵌套表
- type nal_table_type is table of al_table_type;--定义二维嵌套表集合
- --初始化二维集合变量
- nvl nal_varrary_type:=nal_varrary_type(
- al_varray_type(58,100,102),
- al_varray_type(55,6,73),
- al_arrary_type(2,4));
- begin
- dbms_output.put_line('显示二维数组所有元素');
- for i in 1..nvl.count loop
- for j in 1..nvl(i).count loop
- dbms_output.put_line('nvl('||i||','||j||')='||nvl(i,j));
- end loop;
- end loop;
- end;
- /*********************************************************
- Author:qinyangzhao
- describe:多级(索引表)
- *********************************************************/
- declare
- type al_table_type is table of int
- index by binary_integer;--定义一维table
- type nal_table_type is table of al_table_type
- index by binary_integer;--定义二维table集合
- nvl nal_varrary_type;
- begin
- --初始化二维集合变量
- nvl(1)(1):=10;
- nvl(1)(2):=5;
- nvl(2)(1):=32;
- nvl(2)(2):=88;
- dbms_output.put_line('显示二维数组所有元素');
- for i in 1..nvl.count loop
- for j in 1..nvl(i).count loop
- dbms_output.put_line('nvl('||i||','||j||')='||nvl(i,j));
- end loop;
- end loop;
- end;
- /*********************************************************
- Author:qinyangzhao
- describe:处理多行查询语句
- *********************************************************/
- declare
- type empcurtyp is ref cursor;
- emp_cv empcurtyp;
- emp_record emp%rowtype;
- sql_stat varchar2(100);
- begin
- sql_stat:='select * from emp where deptno:=dno';
- open emp_cv for sql_stat using &dno;
- loop
- fetch emp_cv into emp_record;
- exit when emp_cv%notfound ;
- dbms_output.put_line('雇员名:'||emp_record.ename||',工资:'||emp_record.sal);
- end loop;
- close emp_cv;
- end;
- /*********************************************************
- Author:qinyangzhao
- describe:使用bulk子句处理dml语句返回子句
- *********************************************************/
- declare
- type ename_table_type is table of emp.ename%type
- index by binary_integer;
- type sal_table_type is table of emp.sal%type
- index by binary_integer;
- ename_table ename_table_type;
- sal_table sal_table_type;
- sql_stat varchar2(100);
- begin
- sql_stat:='update emp set sal=sal*(1+:percent/100)'
- ||'where deptno=:dno'
- ||'returning ename,sal into :name,:salary';
- execute immediate sql_stat using &percen ,&dno returning bulk collect into ename_table,sal_table;
- for i in 1..ename_table.count loop
- dbms_output.put_line('雇员:'||ename_table(i)
- ||',的新工资为'|| sal_table(i));
- end loop;
- end;
- /*********************************************************
- Author:qinyangzhao
- describe:使用bulk子句处理多行查询
- *********************************************************/
- declare
- type ename_table_type is table of emp.ename%type
- index by binary_integer;
- ename_table ename_table_type;
- sql_stat varchar2(100);
- begin
- sql_stat:='select ename from emp where deptno+:dno';
- execute immediate sql_stat bulk collect into ename_table using &dno;
- for i in 1..ename_table.count loop
- dbms_output.put_line(ename_table(i));
- end loop;
- end;
- /*********************************************************
- Author:qinyangzhao
- describe:在fetch语句中使用bulk子句
- *********************************************************/
- declare
- type empcurtyp is ref cursor;
- emp_cv empcurtyp ;
- type ename_table_type is table of emp.ename%type
- index by binary_integer;
- ename_table ename_table_type;
- sql_stat varchar2(100);
- begin
- sql_stat:='select ename from emp where job:title';
- open emp_cv for sql_stat using '&job';
- fetch emp_cv bulk collect into ename_table;
- for i in 1..ename_table.count loop
- dbms_output.put_line(ename_table(i));
- end loop;
- close emp_cv;
- end;
- /*********************************************************
- Author:qinyangzhao
- describe:在forall语句中使用bulk子句
- *********************************************************/
- declare
- type ename_table_type is table of emp.ename%type;
- type sal_table_type is table of emp.sal%type;
- ename_table ename_table_type;
- sal_table sal_table_type;
- sql_stat varchar2(100);
- begin
- ename_table:=name_table_type('scott','smith','clark');
- sql_stat:='update emp set sal=sal*1.1 where ename=:1'
- ||'returning sal into :2';
- forall i in 1..ename_talbe.count
- execute immediate sql_stat using ename_table(i)
- returing bulk collect into sal_table ;
- for j in 1..ename_table.count loop
- dbms_output.put_line('雇员'||ename_table(j)
- ||'的新工资为'||sal_table(j));
- end loop;
- end;
发表评论
-
何时需要索引
2009-03-01 08:46 13491)与全表扫描相比,索 ... -
索引匹配
2009-02-26 23:01 1034索引匹配索引匹配:对于单一列的索引,如果列单独出现,没有函数或 ... -
oracle监听器失效解决方案
2007-10-14 09:03 6508问题1:dos内部或外部命令失效时。 解决1:在path变量中 ... -
sql 调优方式1
2007-10-08 22:19 1402sql 代码 连接到: Oracl ... -
dos下启动监听及服务
2007-10-08 21:11 2199用惯了pl/sql.突然在公司里让我在dos下来启动oracl ... -
SQL调优
2007-10-07 09:06 1395sql 代码 SQL>create tab ... -
SQL PLUS命令的使用大全
2007-09-11 17:34 4574sql 代码 SQL*PLUS命令的使用大全 ... -
在函数中如何调用存储
2007-07-14 13:44 10531.创建实体表及初始化数据 create table PR ... -
对象类型及对象类型表(只含有简单的类型)
2007-07-14 13:43 10601.如何创建对象类型 语法: CREATE TYPE t ...
相关推荐
5. **PL/SQL高级特性** - **记录类型**:自定义的数据结构,可以包含多个列。 - **表类型**:定义动态大小的表格,可以存储多个记录。 - **游标变量**:用于存储游标状态,可以在PL/SQL中传递和操作。 - **包**...
PL/SQL为Oracle数据库的开发人员提供了一个强大而灵活的工具集,不仅简化了复杂数据处理任务的实现,还通过其内置的异常处理和模块化特性,提高了应用程序的稳定性和可维护性。掌握PL/SQL对于任何希望在Oracle环境下...
本书《精通Oracle10g PL/SQL编程》为读者提供了一个系统性的学习路径,从基础知识到高级应用,从具体技巧到最佳实践,涵盖了PL/SQL编程的方方面面。通过本书的学习,读者将能够有效地提高Oracle数据库编程的效率和...
通过学习这些内容,开发者可以掌握Oracle PL/SQL的高级特性,从而设计和实现更高效、更稳定的数据库应用程序。无论你是数据库管理员、系统架构师还是开发人员,这本书都将为你提供宝贵的指导,助你在Oracle数据库...
《Oracle PL/SQL程序设计(第5版)》基于Oracle数据库11g,从PL/SQL编程、PL/SQL程序结构、PL/SQL程序数据、PL/SQL中的SQL、PL/SQL应用构建、高级PL/SQL主题这6个方面详细系统地讨论了PL/SQL以及如何有效地使用它。...
10. **帮助文档**:附带的使用说明(如"使用说明.txt"文件)通常会详细介绍软件的安装步骤、基本操作和高级特性,帮助用户快速上手。 此外,"欧普软件园.url"可能是指向一个提供软件下载和相关资源的网站链接,用户...
书中的内容覆盖了PL/SQL编程的基础知识和高级特性,从基础的语法和结构到复杂的存储过程和函数的编写,再到错误处理和性能优化,均进行了详尽的阐述。本书在介绍PL/SQL基础知识的同时,也与Oracle 10g的实际使用紧密...
《Oracle Database 10g PL/SQL编程》一书覆盖了PL/SQL语言的基础语法、高级特性以及最佳实践。以下是一些核心章节的概述: #### 第1章:PL/SQL基础 这一章节将介绍PL/SQL的基本概念,包括数据类型、变量声明、常量...
#### 一、PL/SQL编程基础 - **PL/SQL简介**:PL/SQL(Procedural Language for SQL)是Oracle数据库的一种内嵌式过程化语言,用于增强SQL的功能。它允许在SQL查询的基础上添加控制流语句、变量定义、错误处理等特性...
创建和应用包是PL/SQL编程中的一项重要内容,它不仅有助于封装和重用代码,还能够提高代码的安全性和可维护性。包可以定义过程和函数,还可以包含变量、常量和异常等其他对象。 PL/SQL中的触发器可以分为DML触发器...
PL/SQL本身涉及的知识点浩瀚、庞杂...当然,最为重要的还是内容本身,本书首先对PL/SQL的理论基础进行了全面的介绍,其次详细讲解PL/SQL开发的所有功能模块、方法和技巧,最后对它的各种高级特性也进行了深入探讨。
Oracle PL/SQL编程详解是Oracle数据库开发人员必须掌握的技术之一。Oracle PL/SQL是一种用于Oracle数据库系统的程序设计语言,它是SQL语言的扩展,包含了许多能增加程序可读性和模块化的特性。PL/SQL代码被编译成...
根据提供的文件信息,以下是对...由于文件提供的内容有限,无法提供更深入的知识点细节,但是上述内容覆盖了Oracle 11g PL/SQL编程的基本和高级主题。读者可以通过阅读完整的书籍来获得更全面、系统的学习和理解。
Oracle PL/SQL是一种强大的编程语言,它将SQL与过程编程语言的特性相结合,为数据库开发提供了丰富的功能。...通过深入学习这本教材,你将能够掌握Oracle PL/SQL编程,从而有效地设计和实现数据库解决方案。
总之,《精通Oracle 10g PL/SQL编程》是一本全面的教程,它涵盖了从基础到高级的PL/SQL编程技术,适用于数据库管理员、开发人员以及希望提升Oracle数据库应用技能的IT专业人士。通过深入学习,读者可以掌握在Oracle ...
第五版更新了最新的Oracle版本特性,提供了丰富的示例和实战经验,帮助开发者提升PL/SQL编程技能。 这些书籍的结合,将为读者构建一个扎实的PL/SQL知识体系。通过学习,你将能够熟练编写高效、可靠的数据库程序,...
通过阅读此指南,开发者可以了解如何创建高效的PL/SQL代码,避免常见陷阱,并掌握高级特性的应用。 四、文件“PLSQLDev7.0.pdf” 这个PDF文件很可能是PL/SQL Developer 7.0的官方用户手册或教程,包含了详细的软件...
PL/SQL是Oracle数据库系统中的一个关键组成部分,它是一种结合了SQL语言与过程式编程的高级语言,主要用于数据库管理和应用程序开发。在这个“PL/SQL学习资料”压缩包中,包含了十一个PDF文件,覆盖了从基础到进阶的...