Hi,
I'd like to know why the EXISTS clause in SQL uses the old join method. For example.
SELECT * FROM table1
WHERE EXISTS
(
SELECT table2.columnname
FROM table2
WHERE table1.columnname = table2.columnname
AND table1.columnnameB > '01/01/2099'
)
Please provide insight. This gave me different results from using the ANSI standard INNER JOIN in the sub-query.
Thanks, S