oracle存储过程入门
谁能提供一个oracle存储过程的例子.或者谁能介绍oracle存储过程入门的书.要的例子书.谢谢啊....
谁能提供一个oracle存储过程的例子.或者谁能介绍oracle存储过程入门的书.要的例子书.谢谢啊.
展开
2个回答
展开全部
手头都是项目的不能给你,现去搜了一个给你
书的话,基本上没什么,多找写简单的例子看吧.
挺简单的.都是固定格式.
create or replace procedure getstudent(
in_sno in VARCHAR2(7),
out_sname out VARCHAR2(20),
out_sage out NUMBER(2)
)
is
begin
select
sname into out_sname
sage into out_sage
from student
where sno = in_sno;
exception
when NO_DATA_FOUND
return;
end getstudent;
书的话,基本上没什么,多找写简单的例子看吧.
挺简单的.都是固定格式.
create or replace procedure getstudent(
in_sno in VARCHAR2(7),
out_sname out VARCHAR2(20),
out_sage out NUMBER(2)
)
is
begin
select
sname into out_sname
sage into out_sage
from student
where sno = in_sno;
exception
when NO_DATA_FOUND
return;
end getstudent;
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
万山数据
2024-11-14 广告
2024-11-14 广告
数据仓库处理是北京万山数据科技有限公司的核心业务之一。我们专注于高效、安全地处理大规模数据,通过先进的数据仓库技术,实现数据的集成、存储、管理和分析。我们的数据仓库解决方案能够支持复杂的数据查询和分析需求,提供实时的数据洞察,助力企业做出更...
点击进入详情页
本回答由万山数据提供
展开全部
创建存储过程:
create or replace procedure test_ppp is
c number;
begin
select count(1) into c from cat where table_type='TABLE';
DBMS_OUTPUT.put_line('表的数据量为:'||c);
end test_ppp;
在命令窗口执行:
set serverout on;--打开输出开关
execute test_ppp;--执行上面的存储过程
create or replace procedure test_ppp is
c number;
begin
select count(1) into c from cat where table_type='TABLE';
DBMS_OUTPUT.put_line('表的数据量为:'||c);
end test_ppp;
在命令窗口执行:
set serverout on;--打开输出开关
execute test_ppp;--执行上面的存储过程
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询