Hello, could anyone tell me if there is any significant performance difference in the two ways of doing INNER JOIN below?
Way 1:
SELECT column_name(s)
FROM table1
INNER JOIN table2
ON table1.column_name=table2.column_name;
Way 2:
SELECT column_name(s)
FROM table1, table2
WHERE table1.column_name=table2.column_name;
I think the answer should depend on the DBMS, I'm more interested in Oracle databases that are the ones I use most often, but if anyone knows the answer to others it would be nice to know!