I am using the following query in a Cold Fusion page. The server says this is not a supported statement:
"Error Diagnostic Information
ODBC Error Code = S1000 (General error)
[Microsoft][ODBC Microsoft Access Driver] Join expression not supported."
Here is the query:
SELECT eventLocID, stateprov, city, contact, phone1, eventName, eventDate, eventDetails
FROM Locations
LEFT JOIN Events ON ID = eventLocID
WHERE StateProv = 'Oregon'
GROUP BY eventLocID, stateProv, city, contact, phone1, eventName, eventDate, eventDetails
ORDER BY StateProv, City, contact
Is this a syntax error or is it really not supported in Access SQL?
"Error Diagnostic Information
ODBC Error Code = S1000 (General error)
[Microsoft][ODBC Microsoft Access Driver] Join expression not supported."
Here is the query:
SELECT eventLocID, stateprov, city, contact, phone1, eventName, eventDate, eventDetails
FROM Locations
LEFT JOIN Events ON ID = eventLocID
WHERE StateProv = 'Oregon'
GROUP BY eventLocID, stateProv, city, contact, phone1, eventName, eventDate, eventDetails
ORDER BY StateProv, City, contact
Is this a syntax error or is it really not supported in Access SQL?