braykov Member³ May 4, 2007 #1 A SELECT with EXISTS in the WHERE clause is not parsed correctly. Try with any select and check the result aligning.
A SELECT with EXISTS in the WHERE clause is not parsed correctly. Try with any select and check the result aligning.
William Robertson Member³ May 4, 2007 #1 Nice: Code: SELECT 1 FROM dual WHERE EXISTS (SELECT 2 FROM dual); It should obviously be Code: SELECT 1 FROM dual WHERE EXISTS ( SELECT 2 FROM dual )
Nice: Code: SELECT 1 FROM dual WHERE EXISTS (SELECT 2 FROM dual); It should obviously be Code: SELECT 1 FROM dual WHERE EXISTS ( SELECT 2 FROM dual )