有人能有人能解釋爲什麼這些ORACLE SQL查詢的子查詢本地給予不同的輸出的Oracle SQL給予不同的輸出
select * from table2
where not exists(select 1 from table1 a,table2 b where a.name = b.name and a.age = b.age)
select * from table2 b
where not exists(select 1 from table1 a where a.name = b.name and a.age = b.age)
子查詢中的「FROM」在哪裏? – user2989408
它甚至運行良好? – Lobo
是什麼讓「Oracle SQL不能正常工作」成爲這個問題的一個很好的標題? –