Subject | Joins |
---|---|
Author | Chad Z. Hower aka Kudzu |
Post date | 2004-11-15T22:04:57Z |
from
"CustomerHasLead" CHL
join "Lead" L on L."LeadID" = CHL."LeadID"
Given this join does it matter performance or other wise which way the = is?
That is:
L."LeadID" = CHL."LeadID"
Vs
CHL."LeadID" = L."LeadID"
"CustomerHasLead" CHL
join "Lead" L on L."LeadID" = CHL."LeadID"
Given this join does it matter performance or other wise which way the = is?
That is:
L."LeadID" = CHL."LeadID"
Vs
CHL."LeadID" = L."LeadID"