`
liaokang.java
  • 浏览: 155067 次
  • 性别: Icon_minigender_1
  • 来自: 湖南
社区版块
存档分类
最新评论

PL/SQL小例子

SQL 
阅读更多
最近学习了Oraclec的PL/SQL,以下是写的一些小例子,贴出来分享

--过程定义
create or replace procedure proc1(var_month in test.month%type) is
v_sal test.sal%type;
begin
select sal into v_sal from test where month=var_month;
if v_sal > 4000 then
   begin
         dbms_output.put_line(v_sal);
   end;
end if;
end;


--函数定义
create or replace function func1(var_month test.month%type) 
return test.sal%type 
is v_sal test.sal%type;
begin
select sal into v_sal from test where month=var_month;
return v_sal;
end;

--函数的调用
declare
       v_sal test.sal%type;
begin
      v_sal:=func1(7);
      dbms_output.put_line(v_sal);
end;

--带有复合变量的存储过程
create or replace procedure proc2
as
type emp_record is record
(
     name emp.ename%type,
     salary emp.sal%type,
     dno emp.deptno%type
);
user_record emp_record;
begin
select ename,sal,deptno into user_record from emp where empno=7788;
dbms_output.put_line('用户名'||user_record.name||', 薪水'||user_record.salary||', 部门编号'||user_record.dno);
end;


--定义一个包,包由两部分组成,包规范和包体
create or replace package mypackage is
procedure myproc(varempno in emp.empno%type);
function myfunc(varempno in emp.empno%type) return emp.sal%type;
end mypackage;

--下面是包体
create or replace package body mypackage is
procedure myproc(varempno in emp.empno%type)
as 
v_sal emp.sal%type;
begin
select sal into v_sal from emp where empno=varempno;
dbms_output.put_line(v_sal);
end;

function myfunc(varempno in emp.empno%type)
return emp.sal%type
as
v_sal2 emp.sal%type;
begin
select sal into v_sal2 from emp where empno=''||varempno||'';
return v_sal2;
end;
end mypackage;

--调用包中的过程和方法
declare
v_sal emp.sal%type;
begin
mypackage.myproc(7788);
v_sal:=mypackage.myfunc(7788);
dbms_output.put_line(v_sal);
end;

--定义复合类型PL/SQL表实例,其实就是一个特殊数组
--index by binary_integer表示下表是整数
declare
type emp_table_type is table of emp.ename%type index by binary_integer;
table_ename emp_table_type;
begin
select ename into table_ename(0) from emp where empno=7788;
dbms_output.put_line('员工名:'||table_ename(0));
end;

--游标的使用

declare
type emp_cursor is ref cursor;
v_sal emp.sal%type;
v_ename emp.ename%type;
test_cursor emp_cursor;
begin
open test_cursor for select ename,sal from emp where deptno=&deptnum;
loop
fetch test_cursor into v_ename,v_sal;
exit when test_cursor%NOTFOUND;
if v_sal < 2000 then
update emp set sal=2000 where ename=v_ename and deptno=&deptnum;
end if;
dbms_output.put_line('姓名:'||v_ename||' 工资为:'||v_sal);
end loop;
close test_cursor;
end;


--通过存储过程来使用游标和复合变量
create or replace procedure proc3(num in emp.deptno%type) as
type emp_type is record
(
v_ename emp.ename%type,
v_sal emp.sal%type
);
test_type emp_type;
cursor mycur is
select ename,sal from emp where deptno=num;
begin
if mycur%ISOPEN = false then
open mycur;
end if;
loop
fetch mycur into test_type;
exit when mycur%NOTFOUND;
dbms_output.put_line('用户名:'||test_type.v_ename||' 工资:'||test_type.v_sal);
end loop;
close mycur;
end;


--创建一个带有返回值的存储过程

create or replace procedure proc5(empnum in emp.empno%type,empsal out emp.sal%type,empjob out emp.job%type) is
begin
select sal,job into empsal,empjob from emp where empno=empnum;
end;

--定义一个包,并在包中定义游标以便能在存储过程参数中得到结果集
create or replace package testpackage as
type emp_cursor is ref cursor;
end testpackage;

--定义一个带有cursor类型的存储过程
create or replace procedure proc6(deptnum in number,test_cursor out testpackage.emp_cursor) is
begin
open test_cursor for select * from emp where deptno=deptnum;
end;

--分页语句
select * from (select A.*,rownum rn from (select * from emp) A) where rn>=5 and rn<=10;


--定义一个包,并在包中定义一个取得分页结果集的游标
create or replace package fypackage as
type fenye_cursor is ref cursor;
end fypackage;

--定义一个存储过程用来表示分页
create or replace procedure fenye(
tableName in varchar2,--查询的表名
myPageSize in number,--每页显示记录条数
pageNum in number,--第几页
allRows out number,--所有记录条数
allPages out number,--所有页数
result_cursor out fypackage.fenye_cursor--返回结果集游标
) is
v_sql varchar2(1000);
v_start number:=(pageNum-1)*myPageSize+1;
v_end number:=pageNum*myPageSize;
begin
v_sql:='select * from (select A.*,rownum rn from (select * from '||tableName||') A) where rn>='||v_start||' and rn<='||v_end;
open result_cursor for v_sql;
v_sql:='select count(*) from '||tableName;
execute immediate v_sql into allRows;
if mod(allRows,myPageSize)=0 then
allPages:=allRows/myPageSize;
else
allPages:=allRows/myPageSize+1;
end if;
end;


分享到:
评论

相关推荐

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

    - **性能提升技术**:提供了一些具体的例子和最佳实践,展示了如何利用Oracle 11g的新特性来进一步优化PL/SQL程序的性能。 #### 八、实战案例分析 - **案例研究**:通过实际案例来演示如何综合运用前面章节所学的...

    PL/SQL入门到精通书的源代码

    通过这份“PL/SQL入门到精通书的源代码”,你可以看到实际应用这些概念的例子,加深理解,并通过实践来提高技能。每一个源代码文件都是一个精心设计的练习,涵盖了上述知识点的各个方面。对于想要系统学习PL/SQL的...

    PL/SQL examples

    【PL/SQL例子详解】 PL/SQL,全称Procedural Language/Structured Query Language,是Oracle数据库中的一个扩展,结合了SQL的查询能力与过程化编程语言的特点,为数据库管理和开发提供了强大的工具。本资源“PL/SQL...

    ORACLE PL/SQL 程序设计(第五版)

    通过学习《ORACLE PL/SQL 程序设计(第五版)》并实践"OPP5.WEB.CODE"中的例子,读者可以全面掌握PL/SQL编程,并能构建复杂的Oracle数据库应用程序。这本书对于数据库管理员、开发者以及对Oracle数据库感兴趣的任何...

    ORACLE8 PLSQL程序设计_sql_code.zip_oracle pl/sql_pl sql code_pl/sql_

    07-OCI.C可能是关于如何使用OCI API编写PL/SQL程序的例子。 2. **debug**: 09-DEBUG.PC可能包含了调试PL/SQL代码的技巧和示例,这对于解决程序中的错误和性能问题至关重要。 3. **RSINS**: "RSINS"可能是"Row ...

    《精通Oracle PL/SQL》源码

    Oracle PL/SQL是一种强大的编程语言,它结合了SQL(结构化查询语言)的数据库操作能力和PL(过程化语言)的程序设计特性,是Oracle数据库系统中的核心组件之一。《精通Oracle PL/SQL》这本书深入探讨了这个语言的...

    PL/SQL解析、生成XML例子

    本例子将介绍如何在PL/SQL中对XML进行解析和生成,帮助我们更好地理解和操作XML数据。 首先,让我们理解PL/SQL中的XML解析。在Oracle数据库中,有一个强大的XML处理功能集,包括XMLType数据类型和一系列内置的XML...

    PL/SQL 经典例子

    在本“PL/SQL经典例子”中,我们将深入探讨PL/SQL的核心概念和一些常见的应用实例,以助于提升你的Oracle数据库编程技能。 1. **变量与常量**:在PL/SQL中,你可以声明变量和常量来存储数据。例如: ```sql ...

    Oracle PL/SQL程序设计(第5版)源代码

    这些例子可能涉及输入输出参数、返回值、动态SQL等。 3. **游标处理**:PL/SQL中的游标用于逐行处理查询结果。压缩包可能包含使用游标进行数据操作的实例,例如遍历表中的记录并进行处理。 4. **触发器**:触发器...

    动态PL/SQL用法例子

    在动态PL/SQL的例子中,首先展示了如何使用`EXECUTE IMMEDIATE`来创建一个名为`test_qiu`的表: ```plsql BEGIN EXECUTE IMMEDIATE 'CREATE TABLE test_qiu (id NUMBER)'; END; ``` 这段代码的关键在于`EXECUTE ...

    PL/SQL基础一之pl/sql块

    在这个例子中,当尝试除以零时,PL/SQL会捕获`DIVIDE_BY_ZERO`异常,并打印出相应的错误信息。 5. **数据库操作**: PL/SQL可以直接与数据库交互,执行SQL语句,比如查询表、更新记录。例如: ```sql DECLARE ...

    Oracle PL/SQL程序设计(第5版)示例代码

    Oracle PL/SQL程序设计是数据库开发中的核心技能之一,尤其在企业级应用中广泛使用。本书《Oracle PL/SQL程序设计(第5版)》由O'Reilly出版社出版,为学习和理解Oracle数据库的PL/ZIP编程语言提供了丰富的示例代码...

    oracle PL/SQL

    Oracle PL/SQL 是Oracle数据库系统中的过程化语言,它结合了SQL查询功能和高级编程特性,使得开发者可以创建复杂的数据库应用程序。在Oracle 11g R2版本中,PL/SQL与SQL Developer一起使用,提供了丰富的开发环境来...

    PL/SQL程序设计.doc

    文档旨在通过简洁明了的例子,帮助读者全面理解并掌握PL/SQL的相关概念和技术。 PL/SQL,全称Procedural Language/SQL,是Oracle数据库提供的一种过程化编程语言,它将SQL查询语言与过程性编程语言相结合,为数据库...

    pl_sql.zip_fetch_pl/sql_pl_sql_plsql_plsql java

    这可能意味着这些示例中包含了一些如何在PL/SQL中嵌入Java代码,进行跨平台的数据库操作的例子。 总的来说,这个压缩包文件提供了一个全面的PL/SQL学习资源,涵盖了基础的SQL操作、游标使用、数据更新、触发器以及...

    Oracle PL/SQL实例精讲--使用表,课后答案

    Oracle PL/SQL是一种强大的数据库编程语言,用于在Oracle数据库中执行复杂的业务逻辑和数据操作。在"Oracle PL/SQL实例精讲--使用表,课后答案"中,读者可以深入理解如何有效地使用PL/SQL与Oracle数据库中的表格进行...

    PL/SQL教程PL/SQL教程

    PL/SQL是一种专为Oracle数据库设计的编程语言,它扩展了标准的SQL,使得开发者能够编写更复杂、更高效的应用程序。PL/SQL已经深深地集成到Oracle服务器及其相关工具中,成为数据库管理和开发的重要组成部分。 PL/...

    PL/SQL编程详细文档资料

    ### PL/SQL编程详细文档资料 #### 第一章:PL/SQL概述 ##### §1.1 PL/SQL程序设计 PL/SQL(Procedure Language / SQL)是一种专为Oracle数据库设计的高级程序设计语言。它结合了SQL的强大数据处理能力与传统程序...

Global site tag (gtag.js) - Google Analytics