Is there any difference in the performance of the following three SQL statements?
SELECT * FROM tableA WHERE EXISTS (SELECT * FROM tableB WHERE tableA.x = ta
The EXISTS returns a boolean not actual data, that said best practice is to use #3.
EXISTS