oracle存储过程如何循环修改表数据
createorreplaceprocedurejob_pro_dubanisuserRows_shg_report%rowtypecursoruserRowsissel...
create or replace procedure job_pro_duban
is
userRow s_shg_report%rowtype
cursor userRows is
select report_date,d_sid from s_shg_report where d_sid in(select d_sid from s_shg_report where state<3);
begin
for userRow in userRows loop
if to_date(to_char(userRow.report_date,'yyyy-mm-dd'),'yyyy-mm-dd')<sysdate then
select to_date(to_char(userRow.report_date,'yyyy-mm-dd'),'yyyy-mm-dd')-sysdate into wcts from s_shg_report;
end if
end loop
commit;
end job_pro_duban;
这是我写的,总是报错,请大神指点。 展开
is
userRow s_shg_report%rowtype
cursor userRows is
select report_date,d_sid from s_shg_report where d_sid in(select d_sid from s_shg_report where state<3);
begin
for userRow in userRows loop
if to_date(to_char(userRow.report_date,'yyyy-mm-dd'),'yyyy-mm-dd')<sysdate then
select to_date(to_char(userRow.report_date,'yyyy-mm-dd'),'yyyy-mm-dd')-sysdate into wcts from s_shg_report;
end if
end loop
commit;
end job_pro_duban;
这是我写的,总是报错,请大神指点。 展开
2个回答
展开全部
一条语句能够实现的没有必要搞那么复杂嘛
update s_shg_report set wcts=report_date-sysdate where state<3 and report_date<sysdate;
update s_shg_report set wcts=report_date-sysdate where state<3 and report_date<sysdate;
追问
我要写一个定时器,定时器来调用存储过程,每天晚上11点执行。我的QQ:951260588 能加QQ聊吗?
追答
定时器一样也可以调用这个sql啊
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询