I have a JOIN that is not working, and figured I would piggie-back on this thread to see if someone could give me a quick answer... Here is the JOIN syntax. This is my very first attempt at a JOIN statement, so I may be doing something blatantly wrong here. SELECT 'A.Title' FROM `phpCalendar_Daily` AS 'B' JOIN 'phpCalendar_Details' AS 'A' ON 'B.CalendarDetailsID' = 'A.CalendarDetailsID' WHERE CURDATE( ) BETWEEN 'StartDate' AND 'StopDate' I am attempting this from the SQL window of phpMyAdmin, so this is not embedded somewhere in a script and failing. Thanks in advance. -----Original Message----- From: SELPH,JASON (HP-Richardson,ex1) [mailto:jason.selph@hp.com] Sent: Tuesday, February 04, 2003 10:59 AM To: Aaron Wolski; php-db@lists.php.net Subject: RE: matching data from one table with another and displa ying results? Seek out LEFT JOIN on mysql web site, thats what you want. Cheers Jason -----Original Message----- From: Aaron Wolski [mailto:aaronjw@martekbiz.com] Sent: Tuesday, February 04, 2003 10:43 AM To: php-db@lists.php.net Subject: matching data from one table with another and displaying results? Hi All, Having a problem figuring out the logic of something here and hoping someone can point me in the right direction. I have 2 tables. First table holds a listing of all Provinces and States. Here a brief of what it looks like: value label AB Alberta BC British Columbia MB Manitobia NF Newfoundland NT Northwest Territories NS Nova Scotia Second Table is an OrderTable which holds all order and customer info including the province/state. The province/state is dumped from the "value" column of the ProvinceTable. Meaning.. an order record would show the province as "AB" or "NS" instead of "Alberta" or "Nova Scotia". I am creating an order report and in this report I want to display the LABEL name of the Province/State that relates to an the province column in the OrderTable. I could simply just display all provinces/states from the ProvinceTable but then there would be entries for selection that had NO orders. Any idea on this? Thanks guys! Aaron -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php