oracle创建存储过程语句和调用语句一起执行,为什么全写到存储过程中了?存错过程不是在end;后就截止了吗

 我来答
micro0369
2016-11-11 · TA获得超过1.2万个赞
知道大有可为答主
回答量:9250
采纳率:85%
帮助的人:4035万
展开全部

oracle中用;表示一个sql语句结束

用/ 表示一个sql语句段结束(类似sqlserver的 go)


所以是:


create or replace procedure pro_updatetab
as 
begin
    update testtab t set t.name=(select name from usertab u where t.id=u.id);
end;
/

declare 
begin
    exec pro_updatetab();
end;
唐城冬
2016-11-09 · 大家一起学习进步吧!!!
唐城冬
采纳数:915 获赞数:1815

向TA提问 私信TA
展开全部
你还是把语句贴出来吧
更多追问追答
追问
create or replace procedure pro_updatetab
as
begin

update testtab t set t.name=(select name from usertab u where t.id=u.id)
end;

declare

begin
exec pro_updatetab();
end;
执行后就全部写到存储过程中了
追答
begin
create or replace procedure pro_updatetab
as
begin

update testtab t set t.name=(select name from usertab u where t.id=u.id)
end;
end;
declare

begin
exec pro_updatetab();
end;
这样试试呢
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式