------解决方案-------------------- select * from tablename t where t.id in select id from .....
------解决方案-------------------- 将你需要的参数先存入到一个临时表中,然后再用1楼的sql就行
------解决方案-------------------- 二楼说法是正确的,我以前也遇见过此类问题。
------解决方案-------------------- 使用exists吧 这样执行起来效率高。 select * from tablename a where exists(select null from tablename1 b where b.id = a.id)
------解决方案-------------------- 二楼方法很正确,呵呵,无需多说了。
------解决方案--------------------