Apologies, for not providing table data
For a given two non indexed tables (for some reason) with more than million records.
Which is the best option among the below to check if record exists:
A. Cost to execute query
B. Time to execute query
1.(Select Count(*) from tables where <condition> and rownum=1)>0
2. Exists(Select null from tables where <condition>