I have few questions on SQL..
How to analyze the performance of a query? Any software, inbuilt features of MSSQL server 2005/2008?
What shou
I guess the join gives more free to the engine for choice the best query plan. In your exactly case, probably have all solutions similar performances.
SELECT enquiry_courses.*
FROM enquiry_courses
INNER JOIN enquiries ON enquiries.enquiry_id=enquiry_courses
AND session_id = '4cd3420a16dbd61c6af58f6199ac00f1'