ss1289
06-24-2008, 09:58 AM
SELECT * FROM person
JOIN emailaddress ON person.personid = emailaddress.personid
JOIN package ON package.personid = person.personid
In the execution level, which JOIN is executed first? This is just a basic example but I was wondering how it's executed.
JOIN emailaddress ON person.personid = emailaddress.personid
JOIN package ON package.personid = person.personid
In the execution level, which JOIN is executed first? This is just a basic example but I was wondering how it's executed.