永发信息网

请将把这些oracle的sql语句写成oracle的存储过程

答案:1  悬赏:10  手机版
解决时间 2021-05-02 06:36
  • 提问者网友:眉目添风霜
  • 2021-05-01 09:25
insert into  tab_cgdsh(CLSBDH,HPZL,CLPP,CLLX,SYR,YXQZ,QZBFQZ,CCDJRQ,LXDH,XMBH)
(
select CLSBDH,HPZL,CLPP,CLLX,SYR,YXQZ,QZBFQZ,CCDJRQ,LXDH,'C04' from test_cgdsh t where t.cllx='H51' OR t.cllx='H52' OR t.cllx='H53' OR t.cllx='H54'
and t.ccdjrq>=trunc(add_months(sysdate,-110),'month')
and t.ccdjrq <= last_day(add_months(sysdate,-110))
and t.clsbdh not in(select cgsh.clsbdh from tab_cgsh cgsh where cgsh.xmbh='C04')
)
最佳答案
  • 五星知识达人网友:西风乍起
  • 2021-05-01 10:49

CREATE OR REPLACe PROCEDURE P1()


AS


BEGIN


insert into  tab_cgdsh(CLSBDH,HPZL,CLPP,CLLX,SYR,YXQZ,QZBFQZ,CCDJRQ,LXDH,XMBH)
(
select CLSBDH,HPZL,CLPP,CLLX,SYR,YXQZ,QZBFQZ,CCDJRQ,LXDH,'C04' from test_cgdsh t where t.cllx='H51' OR t.cllx='H52' OR t.cllx='H53' OR t.cllx='H54'
and t.ccdjrq>=trunc(add_months(sysdate,-110),'month')
and t.ccdjrq <= last_day(add_months(sysdate,-110))
and t.clsbdh not in(select cgsh.clsbdh from tab_cgsh cgsh where cgsh.xmbh='C04')
)

END P1;


/

我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯