|  | Posted by michaelnewport on 09/07/05 17:55 
Greetings,
 I like to write my inner joins as below,
 but someone at work tells me its not as 'performant'
 as using the 'inner join' statement.
 
 Is this true ?
 Is there a better way to write it ?
 
 thanks
 Mike
 
 SELECT count(*)
 FROM resources a, assignments b,
 timesheets c, timesheetpayrollitems d
 WHERE a.rsrchqnumber = 80002202
 and a.rsrcguid = b.asgtrsrcguid
 and b.asgtassignmentid = 0000006271
 and b.asgtguid = c.tishasgtguid
 and c.tishguid = d.tpittishguid
 and d.tpitpayrollcode != 231
 and d.tpitdaydate > '20050822'
  Navigation: [Reply to this message] |