Oracle
2021/7/9 19:18:28
本文主要是介绍Oracle,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
<!doctype html>
Oracle
存储过程
是存储在数据库里的
pl/sql语言基础
- 游标
xxxxxxxxxx10 1
declare2
cursor name is select......3
begin4
open name;5
loop6
fetch name into ....7
exit when name%notfound;8
end loop;9
close name;10
end;
xxxxxxxxxx11 1
declare2
cursor name is ...3
begin4
open name;5
fetch name into ....6
while name%found loop7
...8
fetch name into ......;9
end loop;10
close loop;11
end;
%found:判断最近一次使用fetch语句是否从缓存中检索导数据,如果检索到数据,返回true,否则返回false;(经常与while连用)
%notfound:判断最近一次使用fetch语句是否从缓存中检索导数据,如果没有检索到数据,返回true,否则返回false;(经常与when连用)
pl/sql程序开发
- 存储过程
xxxxxxxxxx10 1
create or replace procedure lisi(2
id student.studentId%type,3
na student.name%type)4
as5
begin6
update student set studentId=id, name=na where studentId=id;7
exception8
when others then9
DBMS_OUTPUT.PUT('无法修改');10
end;
- 函数
xxxxxxxxxx8 1
create or replace function jindao2
return number3
as4
c number;5
begin6
select COUNT(*) into c from student where name='金导';7
return c;8
end jindao;
- 包
xxxxxxxxxx5 1
create or replace package pkg2
as3
procedure hello;4
FUNCTION getid(id number) return number;5
end pkg;
- 包体
xxxxxxxxxx13 1
create or replace package body pkg2
as3
procedure hello4
as5
begin6
dbms_output.put_line('hello');7
end hello;8
FUNCTION getid(id number) return number9
as10
begin11
return id;12
end getid;13
end pkg;
- 调用包
xxxxxxxxxx7 1
declare2
c number;3
begin4
pkg.hello;5
c:=pkg.getid(1);6
DBMS_OUTPUT.put_line(c);7
end;
- 触发器
xxxxxxxxxx5 1
create or replace trigger jindaogrant2
after update or delete on student3
begin4
DBMS_OUTPUT.put_line('触发器发现你了');5
end;
这篇关于Oracle的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-15在使用平台私钥进行解密时提示 "私钥解密失败" 错误信息是什么原因?-icode9专业技术文章分享
- 2024-11-15Layui框架有哪些方式引入?-icode9专业技术文章分享
- 2024-11-15Layui框架中有哪些减少对全局环境的污染方法?-icode9专业技术文章分享
- 2024-11-15laydate怎么关闭自动的日期格式校验功能?-icode9专业技术文章分享
- 2024-11-15laydate怎么取消初始日期校验?-icode9专业技术文章分享
- 2024-11-15SendGrid 的邮件发送时,怎么设置回复邮箱?-icode9专业技术文章分享
- 2024-11-15使用 SendGrid API 发送邮件后获取到唯一的请求 ID?-icode9专业技术文章分享
- 2024-11-15mailgun 发送邮件 tags标签最多有多少个?-icode9专业技术文章分享
- 2024-11-15mailgun 发送邮件 怎么批量发送给多个人?-icode9专业技术文章分享
- 2024-11-15如何搭建web开发环境并实现 web项目在浏览器中访问?-icode9专业技术文章分享