Which one is better way to join tables in SQL ?
OR
Although above queries produce the same result set but I am confused which one is more efficient and used widely.
thanks,
Amit
Code:
SELECT * FROM TABLE1, TABLE2 WHERE TABLE1.KEY = TABLE2.VALUE
Code:
SELECT * FROM TABLE1 INNER JOIN TABLE2 ON TABLE1.KEY = TABLE2.VALUE
thanks,
Amit
Comment