January 15, 2012 at 10:54 pm
Dear Friends,
I am having two tables TB_PERSON_P and TB_PERSON_R
both having a common column R_ID
now we can write two query:
select R_ID from TB_PERSON_P P,TB_PERSON_R R where P.R_ID=R.R_ID
and
Select R_ID from TB_PERSON_P P join TB_PERSON_R on P.R_ID=R.R_ID
which would be faster among these two statement?
Thanks!!
January 16, 2012 at 12:07 am
both will be equal;
However, I always advise to use the join syntax because it nicely distinguishes join conditions and filter conditions.
This is especially interesting with outer joins.
BTW as of sql2005 ( exception trace flag can be enabled ) the old style outer join syntax ( *= , =* ) are no longer supported with sqlserver.
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data/code to get the best help[/url]
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution 😀
Need a bit of Powershell? How about this
Who am I ? Sometimes this is me but most of the time this is me
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply