clintthorn
Registered User.
- Local time
- Today, 09:36
- Joined
- Jul 2, 2008
- Messages
- 16
I have a query that is pulling from 2 tables to help categorize the data. I have country fields that I am associating with certain geos. But there is a large list of countries that do not correlate to my geo buckets. Is there a way that I can assign a name (e.g., "other") and have them included in my query? I am using Access 2003. Below is my SQL code.
SELECT [Data_Table].Date, Geo_Table.Geo, [Data_Table].Country, [Data_Table].Product, [Data_Table].Distcode
FROM Geo_Table LEFT OUTER JOIN Data_Table ON Geo_Table.[Country] = [Data_Table].Country;
Thanks in advance!
SELECT [Data_Table].Date, Geo_Table.Geo, [Data_Table].Country, [Data_Table].Product, [Data_Table].Distcode
FROM Geo_Table LEFT OUTER JOIN Data_Table ON Geo_Table.[Country] = [Data_Table].Country;
Thanks in advance!