Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to: LEFT JOIN in UltraDev 1

Status
Not open for further replies.

sfunk

Technical User
Jan 22, 2002
107
US
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?

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
 
Are you doing this in a Query inside Access? "Damn the torpedoes, full speed ahead!"

-Adm. James Farragut

Stuart
 
No, should I be?

Thanks,
steve
 
It'd be a lot easier,

Plus queries inside access handle null values much better.

When you do a query in Access - you can bring up two tables, and drag which fields are to relate - edit the join and make your preference there.

You "May" have to do relationships first (at the main screen) but that's pretty simple as well.

Give it a shot, hollar if you need help. "Damn the torpedoes, full speed ahead!"

-Adm. James Farragut

Stuart
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top