如何用pl sql创建一个存储过程?
首先存储过程是什么?如何创建?我就是想实现查询一个表select*fromtablename...
首先存储过程是什么?如何创建?
我就是想实现查询一个表select * from tablename 展开
我就是想实现查询一个表select * from tablename 展开
3个回答
展开全部
存储过程就是可存储于数据库中的一段可执行代码块。
create or replace procedure 过程名
(
参数列表
) as
变量列表
begin
业务逻辑代码块
open ref_cursor for v_sqltext2;
exception
异常处理代码块
end 过程名
create or replace procedure test
(
o_cursor out sys_refcursor
) as
begin
open o_cursor for select * from tablename;
exception
null;
end test
create or replace procedure 过程名
(
参数列表
) as
变量列表
begin
业务逻辑代码块
open ref_cursor for v_sqltext2;
exception
异常处理代码块
end 过程名
create or replace procedure test
(
o_cursor out sys_refcursor
) as
begin
open o_cursor for select * from tablename;
exception
null;
end test
追问
o_cursor和sys_refcursor都代表什么 谢谢
追答
o_cursor返回参数,sys_refcursor参数类型
展开全部
MySQL教程4 MySQL8运算符、函数、存储过程及新增数据类型 17.之创建带有IN和OUT参数的存储过程 学习猿地
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
create or replace procedure up_xx
as
begin
select * from tablename
end;
as
begin
select * from tablename
end;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询