Hello.
I am trying to do a JOIN in UltraDev and it is giving me a syntax error. It is using Access as the database. I have verified that for Access this is the syntax that I should use. But it is not working. Can anyone help out?
Thank you,
steve
I am trying to do a JOIN in UltraDev and it is giving me a syntax error. It is using Access as the database. I have verified that for Access this is the syntax that I should use. But it is not working. Can anyone help out?
Code:
SELECT *
FROM profile, Favorites
WHERE profile LEFT JOIN Favorites ON profile.email = Favorites.Profile_FK
And profile.email = 'varEmail'
ORDER BY Favorite_ID
Thank you,
steve