Possible Duplicate:
Inner join vs Where
Hello in many interviews they ask which is more efficient , inner join or where clause? How to justify an tell an answer for such a scenario?
Possible Duplicate:
Inner join vs Where
Hello in many interviews they ask which is more efficient , inner join or where clause? How to justify an tell an answer for such a scenario?
Both are same as per execution Plan, but can increase readability by using join. Best practice is to use join
It idepends.... You must write queries and compare the execution plans to get the answer.