我想像下面的查询一样解码值:
select id,
name,
val
from table1
where id in (decode(1,0,0,1,('''4'',''5'',''6''')));
但我没有得到任何记录(记录实际上是可用的)。解码功能('''4'',''5'',''6''')
会起作用吗?
我试过但没有工作。有什么替代方法吗?
我不确定我明白你在问什么。我最好的猜测是你想返回一个集合。例如,如果您定义一个NUM_TBL
集合
CREATE TYPE num_tbl IS TABLE OF NUMBER;
然后你可以做这样的事情,你DECODE
返回一个数字集合
SQL> ed
Wrote file afiedt.buf
1 with x as (
2 select level id
3 from dual
4 connect by level <= 10 )
5 select *
6 from x
7 where id in (select *
8* from table(decode( 1, 0, num_tbl(0), 1, num_tbl(2,3,4) )))
SQL> /
ID
----------
2
3
4