It's a personal style thing, but I like to see my tables in a column like this:select rgtwo.regionid,rgtwo.city,rgthree.regionid,rgthree.city from Region as rgone(nolock) join Region as rgtwo(nolock) on rgone.regionid = rgtwo.regionid and rgone.regionid = 1 left outer join region as rgthree(nolock) on rgtwo.regionid = rgthree.regionid and rgthree.city = 'New York'
Shouldn't the first join be an INNER JOIN or LEFT OUTER JOIN?