子查询多行时的情况



我在 DB2 9.7.01 上有树表

表 A(此处为起始数据(

codeA |type
-----------------------------
P003 |P
K001 |K

表 B(此处为商品数据(

codeB |description
-----------------------------
P001 |Product one
P002 |Product two
P003 |Product three

表 C(此处为试剂盒数据;试剂盒包括一种或多种产品(

codeC |description |codeB
-----------------------------
K001 |Kit one      |P001
K001 |Kit one      |P002

我需要读取 A 表的每一条记录,如果字段类型为"K",则查询必须返回其多个乘积; 如果类型为"P",则查询仅返回一个产品;这是要完成的查询

Select a.codeA AS codeExternal, 
case 
when a.type = 'K' then (select C.CODEB from C  where A.CODEA = C.CODEC)
 else a.CODEA
end as codeInternal
from 
A 
left B
ON a.CODEA = B.CODEB

但查询仅返回

codeExt | code Int
---------------------------
P003    | P003
K001    | P001

而不是期待的

codeExt | code Int
---------------------------
P003    | P003
K001    | P001
K001    | P002

尝试这样的事情:

select A.CodeA CodeExt, B.CodeB CodeInt
from A inner join B on A.CodeA=B.CodeB and A.type='P'
union all
select A.CodeA CodeExt, C.CodeB CodeInt
from A inner join C on A.CodeA=C.CodeC and A.type='K'

如果要删除 Doublon,请使用联合而不是全部并集

相关内容

  • 没有找到相关文章

最新更新