oracle 中查询结果作为查询条件
发布网友
发布时间:2022-04-25 06:08
我来回答
共2个回答
热心网友
时间:2022-04-10 06:14
select * from t2
inner join t1
on t2.A=t1.A
and t2.B=t1.B
where
exists((select t3.A,t3.B from t3 where t2.A=T3.B AND ...)
就这样!追问exists返回的好像只是BOOL把? 问题已经解决了 谢谢您
热心网友
时间:2022-04-10 07:32
没看明白