博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Oracle:创建存储过程
阅读量:6426 次
发布时间:2019-06-23

本文共 512 字,大约阅读时间需要 1 分钟。

1.无参存储过程

create or replace procedure test_proc

as
v_total number(10);
begin
  select count(*) into v_total from F_RELATION;
  DBMS_OUTPUT.put_line('总人数:'||v_total);
end;
begin
  test_proc;
end;

 

2.有参存储过程

create or replace procedure test_proc(

v_name in VARCHAR2,
anum in varchar2 ,
cid in integer default 100
)
as
v_total number(10);
begin
  select count(*) into v_total from F_RELATION;
  DBMS_OUTPUT.put_line('总人数:'||v_total||',id='||v_name||',anum='||anum||',cid='||cid);
end;
begin
  test_proc('101','this is anum');
end;

转载地址:http://xsyga.baihongyu.com/

你可能感兴趣的文章
ssh如何通过跳板机直接访问到后端服务器(Mac&Linux&Windows解决方案)
查看>>
Server 2003 远程登录断开会话和连接数
查看>>
javascript 字符串函数
查看>>
泰州市互联网单位信息网络安全保护技术交流会
查看>>
数据库正在使用,所以无法获得对数据库的独占访问权---还原或删除数据库的解决方法...
查看>>
mysql 用drop和delete方法删除用户的区别
查看>>
华为机器万能密码
查看>>
为什么要使用 Docker
查看>>
实现高可用性网络的方法
查看>>
html5基础语句(学习)
查看>>
linux加密解密基础
查看>>
ECS服务器被脚本挖矿了,CPU100%负载
查看>>
IIS SSL客户端证书(忽略/接受/必须)之三——思考验证(1)
查看>>
Angular 文档中链接的修改路径
查看>>
JTable内容居中显示
查看>>
MySQL内置help解析(SQL语句说明书)
查看>>
使用Mybatis-Generator自动生成Dao、Model、Mapping相关文件
查看>>
vShield App设计指南[中]
查看>>
跟我一起数据挖掘(20)——网站日志挖掘
查看>>
在Solaris 下使用Os Watcher 监控Oracle
查看>>