Subject Joins
Author Chad Z. Hower aka Kudzu
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"