I have the below query that returns the correct records but the
POINTFUND.description field is all NULL while it has values in the table.
Any idea why?  Thanks.

SELECT

RACES.RACE_ID,
RACES.sequence,
TYPES.typelong,
SCHEDULE.event,
SCHEDULE.date,
PARTY.lname,
POINTFUND.description

FROM

TYPES LEFT JOIN RACES ON RACES.TYPE_ID = TYPES.TYPE_ID
LEFT JOIN POINTFUND ON POINTFUND.TYPE_ID = TYPES.TYPE_ID,
SCHEDULE,
PARTY

WHERE

RACES.SCHEDULE_ID = SCHEDULE.SCHEDULE_ID AND
PARTY.PARTY_ID = SCHEDULE.TRACK_ID

ORDER BY

SCHEDULE.date, PARTY.lname


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to