各位老大,请看看子查询怎么不能使用union?
表ckd结构及数据如下:pgdh,ch,je
01 00013 500
01 00075 -100
02 00049 300
03 00013 300
04 00075 200
要求:先把符合条件的ch=00013和ch=00049的记录找出来,再到ckd中找 pgdh相同的其他纪录
需要得到如下结果:
01 00013 500
03 00013 300
02 00049 300
01 00075 -100
下面是我写的sql:
select * from ckd where pgdh in (selec pgdh as pgdh from ckd where ch='00013' union selec pgdh as pgdh from ckd where ch='00049')
错误提示:在子查询中使用Union无效!