- 浏览: 923361 次
- 性别:
- 来自: 黑龙江
-
文章分类
- 全部博客 (209)
- struts1 (3)
- hibernate3 (19)
- java (13)
- spring2 (5)
- netBeans (1)
- eclipse (1)
- JSF (1)
- DIV+CSS篇章 (1)
- jFreeChart+Oracle之曲线,柱状及饼状图的实现 (1)
- JSF知识与技巧 (3)
- Oracle数据类型的介绍与比较 (2)
- J2EE (2)
- Ajax技术 (4)
- javaScript技术 (25)
- struts2 (16)
- C/C++程序设计 (1)
- oracle系统学习 (29)
- 算法分析 (0)
- Linux实践 (7)
- extjs开发经验 (13)
- flex开发总结 (1)
- FusionCharts总结 (0)
- 高级数据库总结 (0)
- SVG拓扑图开发总结 (0)
- CSS (1)
- CSS使用简介 (1)
- SVG (0)
- DOJO (0)
- Junit测试 (0)
- lucene (24)
- solr (6)
- tokyo tyrant 技术 (7)
- Html5 (1)
- 算法与数据结构 (0)
- 物联网相关技术学习 (0)
- UI设计 (1)
- webservice (0)
- Android (5)
- hibernate4 (3)
- solrcloud (0)
- dorado5 (0)
- dorado7 (0)
- elasticsearch (0)
- GWT (0)
- node.js (0)
- 并发编程 (1)
- 大数据 (1)
- 项目经验 (5)
最新评论
-
cs261244787:
楼主好人! 平安
struts2,hibernate4,spring3配置时问题汇总及解决办法 -
wxluck666:
我也赞一个 很有用
struts2,hibernate4,spring3配置时问题汇总及解决办法 -
wxluck666:
我也赞一个 很有用
struts2,hibernate4,spring3配置时问题汇总及解决办法 -
xinsiyou:
牛逼,就是样式被搞没了
JS实现选项右移,左移,向上,向下调整顺序 -
unnamed__:
这代码风格就像一坨翔
java获取数据库的列名,类型等信息
PL/SQL编程(高级特性)2009年04月09日 星期四 11:20--set serveroutput On--打开显示模式
declare
type cust_record_type is record(--定义记录类型
customer_name customer.customer_name%type,--声明标量变量
customer_status customer.customer_status%type--声明记录变量
);
cust_record cust_record_type;
begin
select a.customer_name ,a.customer_status into cust_record from customer a Where Rownum=1 ;
--where a.customer_id=b.customer_id and b.ord_id=&id;
dbms_output.put_line('客户名:'||cust_record.customer_name);
dbms_output.put_line('状态:'||cust_record.customer_status);
end;
/*********************************************************
Author:qinyangzhao
describe:%rowtype属性(rowtype)
*********************************************************/
declare
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;
declare
type cust_record_type is record(--定义记录类型
customer_name customer.customer_name%type,--声明标量变量
customer_status customer.customer_status%type--声明记录变量
);
cust_record cust_record_type;
begin
select a.customer_name ,a.customer_status into cust_record from customer a Where Rownum=1 ;
--where a.customer_id=b.customer_id and b.ord_id=&id;
dbms_output.put_line('客户名:'||cust_record.customer_name);
dbms_output.put_line('状态:'||cust_record.customer_status);
end;
/*********************************************************
Author:qinyangzhao
describe:%rowtype属性(rowtype)
*********************************************************/
declare
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;
发表评论
-
数据表更名语句
2010-04-21 11:08 1260当前数据表名为A,想要更名为B的语句如下: alter tab ... -
ORA-01078 & LRM-00109错误解决方法
2010-03-23 16:40 5580一同事今天刚装完oracle10g后,通过startup命令启 ... -
在线修改redo.log文件的大小
2009-09-02 17:24 59791.查看当前日志组成员: SQL> select mem ... -
怎么确保最终用户在数据库中只有一个会话
2009-08-11 18:47 1528sqlplus / as sysdba create user ... -
测试版-逻辑switchover
2009-07-16 12:41 12751.检查primary数据库是否配置了standby redo ... -
测试版-逻辑standby创建
2009-07-16 12:37 23291、创建物理standby 详见《测试版-物理standb ... -
测试版-物理switchover
2009-07-16 12:35 1103注意:standby数据库应该是alter database ... -
测试版-物理standby创建
2009-07-15 17:37 13171.编辑/etc/hosts文件 # vi /etc/ho ... -
dataguard日志传输方式简介
2009-06-26 12:44 53921、两种日志传输方式 Arch:传统的日志传送方式。现在只 ... -
物理standby的failover
2009-06-26 12:40 1236========================物理stand ... -
物理standby的Switchover
2009-06-26 12:39 1300=======================物理st ... -
dataguard保护模式介绍
2009-06-26 12:38 33471、三种保护模式 1).最大性能(maximize per ... -
查看pga和sga值
2009-05-27 01:07 2588--显示正在使用的参数和文本参数值 1)select * fr ... -
设置sga和pga的值
2009-05-27 01:05 2589--设置sga的值 1)alter system set sg ... -
表的创建时间和表的大小空间
2009-05-27 01:04 1377--查看表的创建时间 select created,last_ ... -
设置parallel_automatic_tuning参数之后的错误的解决方法
2009-05-27 01:02 1797--设置并行度 1)alter system set para ... -
HA、RAC、Datagurad的区别
2009-05-10 20:20 2500标题为:HA、RAC、Datagurad的区别 一.HA简介 ... -
通过shell脚本后台创建表空间
2009-05-10 20:16 20971.用oracle用户登陆并创建shell文件: $ vi / ... -
occi库文件替换
2009-05-10 20:08 21201.从官方下载occi_gcc343_x86_64_10203 ... -
oracle10g查看表空间信息
2009-05-10 20:06 3028SELECT UPPER(F.TABLESPACE_NAME) ...
相关推荐
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的实际使用紧密...
#### 一、PL/SQL编程基础 - **PL/SQL简介**:PL/SQL(Procedural Language for SQL)是Oracle数据库的一种内嵌式过程化语言,用于增强SQL的功能。它允许在SQL查询的基础上添加控制流语句、变量定义、错误处理等特性...
《Oracle Database 10g PL/SQL编程》一书覆盖了PL/SQL语言的基础语法、高级特性以及最佳实践。以下是一些核心章节的概述: #### 第1章:PL/SQL基础 这一章节将介绍PL/SQL的基本概念,包括数据类型、变量声明、常量...
创建和应用包是PL/SQL编程中的一项重要内容,它不仅有助于封装和重用代码,还能够提高代码的安全性和可维护性。包可以定义过程和函数,还可以包含变量、常量和异常等其他对象。 PL/SQL中的触发器可以分为DML触发器...
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文件,覆盖了从基础到进阶的...
包是PL/SQL的一个高级特性,它可以组合相关的变量、常量、过程和函数,形成一个逻辑单元。包可以提高代码的组织性,同时提供封装和隐藏实现细节的能力。 10. **EXCEPTION(PL/SQL)** 异常处理是PL/SQL的另一个重要...