Microsoft
Software
Hardware
Network
Question : Select distinct based on 2 fields
I have a table, Buyer. It has BuyerCode and Country columns. I want to select distinct based on 2 columns combined. For example, I have 1st record: Buyer1, USA, 2nd record: Buyer1, Canada, record 3: Buyer2, USA etc. I want to select both Buyer1 since its country is different. If I do Select Distinct BuyerCode, I only get Buyer1 with USA. How do I do it?
I appreciate your suggestions in advance. Thank you.
Answer : Select distinct based on 2 fields
SELECT BuyerCode, Country
FROM Buyer
GROUP BY BuyerCode, Country
-- or --
SELECT DISTINCT BuyerCode, Country
FROM Buyer
They should return the same results.
Random Solutions
Problems Installing PyQt on OS X 10.6.3
Use of Excel Macro in MS Access 2000
HTML and opening new pages, can the following be done?
div not going entire 100% width
Excel VBA
School Network
Mac CSS Issue
FileZilla Server Setup problem
How can I run a php script before all other processing in the htaccess file, think its a regex problem?
How to pass a scalar variable from one query to another