Hello. I apologize if this is the wrong forum, but I think this is the best fit - so here goes.
I am a M$ SQL Server guy that has ran into a customer with an application that runs on a Progress 9.1D backend. I need a query that does a simple left join. The SQL Server version would be:
I have figured out the syntax to pull the data from a single table such as:
So I am slowly figuring out the different syntax, but this table join is a killer. Any help? Thanks in advance.
I am a M$ SQL Server guy that has ran into a customer with an application that runs on a Progress 9.1D backend. I need a query that does a simple left join. The SQL Server version would be:
Code:
SELECT membership.m-acct-no, membership.m-email, profile.p-lname, profile.p-fname, profile.p-hphone
FROM membership
LEFT JOIN profile ON (membership.member-no = profile.member-no)
WHERE membership.somefield = somevariable
I have figured out the syntax to pull the data from a single table such as:
Code:
SELECT "m-account-no"
FROM PUB.membership
WHERE "guest-no" = 1
So I am slowly figuring out the different syntax, but this table join is a killer. Any help? Thanks in advance.