A
Amit
Hi,
I'd like to get a unique list of organizations, based on
the organization name AND organization address.
1. Org A, Address 1 (location 1)
2. Org A, Address 2 (location 2)
Right now, the table has multiple entries for 1. & 2. I'd
like to get rid of the duplicates based on (org name + org
address). I know how to do this when there is one field,
using DISTINCT, but am not sure how to do this for more
than one field.
SELECT orgName, orgAddress
FROM tblOrg
WHERE ....???
Thanks for any help.
-Amit
I'd like to get a unique list of organizations, based on
the organization name AND organization address.
1. Org A, Address 1 (location 1)
2. Org A, Address 2 (location 2)
Right now, the table has multiple entries for 1. & 2. I'd
like to get rid of the duplicates based on (org name + org
address). I know how to do this when there is one field,
using DISTINCT, but am not sure how to do this for more
than one field.
SELECT orgName, orgAddress
FROM tblOrg
WHERE ....???
Thanks for any help.
-Amit