Please tell the execution time difference in sql server 2005
select table1.* from table1 inner join table2 on table1.id=table2.id
And
select t1.* from table t1, table 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.
I’d expect the SQL Server query optimiser to evaluate these in exactly the same way so you should see no difference at all in execution.
You can confirm of course by checking out the execution plans that can be generated within Management Studio.