如何制作动态pl / sql?

时间:2019-04-02 02:18:16

标签: oracle plsql dynamic-queries

我想在参数值中使用类型变量来创建动态pl / sql。

参数值 > 类型= {'名称+地点','resno','hpno','telno'};

例如 如果我有参数值('resno','hpno') 需要两个合并查询(全部合并为2个) 因此,这意味着查询数量取决于参数值。

select * from (
--repeatation
select * from
(select a.custnm
     , 'name + place' as vtype
     , a.custnm || '-' || c.pjtcd || '-' || c.dong || '-' || c.ho as con
     , count(a.custid) as nodup 
from   custtable a
     , thng c 
where a.custid = c.custid(+)
group by a.custnm, c.pjtcd, c.dong, c.ho
having count(a.custid) > 1) x
--/repeatation
union all
--repeatation
select * from
(select a.custnm
     , 'resno' as vtype
     , a.resno as condup
     , count(a.custid) as nodup 
from   custtable a
group by a.custnm, a.resno
having count(a.custid) > 1) x2
--repeatation
union all
--repeatation
select * from
(select a.custnm
     , 'hpno' as vtype
     , a.hpno as condup
     , count(a.custid) as nodup 
from   custtable a
group by a.custnm, a.hpno
having count(a.custid) > 1) x3
--repeatation
union all
--repeatation
select * from
(select a.custnm
     , 'telno' as vtype
     , a.telno as condup
     , count(a.custid) as nodup 
from   custtable a
group by a.custnm, a.telno
having count(a.custid) > 1) x4
--repeatation
) 
order by decode(vtype, 'name +`enter code here` place', 1 ,'resno', 2 ,'hpno', 3,  'telno', 4), nodup desc

plz让我知道如何用参数值制作plsql

1 个答案:

答案 0 :(得分:1)

这是SELECT语句。现在的编写方式是SQL,而不是PL / SQL,我的建议是那样保存。与其编写可怕的PL / SQL(动态SQL通常并不好),不如根据该语句创建一个视图

create or replace view v_my_view as
select * from (
--repeatation
select * from
(select a.custnm
     , 'name + place' as vtype
<snip>

一旦这样做,就可以在任何需要的地方使用它(包括PL / SQL)。