Is there a difference in performance (in oracle) between
Select * from Table1 T1 Inner Join Table2 T2 On T1.ID = T2.ID
And
Select * from Table1 T1, Table2 T2 Where T1.ID = T2.ID
?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No! The same execution plan, look at these two tables:
The execution plan for the query using the inner join:
And the execution plan for the query using a WHERE clause.