PRMiller2
Technical User
- Jul 30, 2010
- 123
I am having a problem with SELECT DISTINCT... it is returning duplicate rows.
I have imported an Excel spreadsheet to a table with the following structure (just the first few columns):
HMSPIID, Text, 255, @
FIRSTNM, Text, 255, @
MIDDLENM, Text, 255, @
LASTNM, Text, 255, @
The first few rows of data look like this:
PI00GXV0G0 ALAN SCOTT JOHNSON
PI00GXV0G0 ALAN SCOTT JOHNSON
PI00GXV0G0 ALAN SCOTT JOHNSON
PI00K4WBF3 JANE MARIE SMITH
PI09TH3EG1 KATHY ANN JOHNSON
My query is as follows:
The query returns the following:
HMSKEY FIRSTNM MIDDLENM LASTNM
PI00GXV0G0 ALAN SCOTT JOHNSON
PI00GXV0G0 ALAN SCOTT JOHNSON
PI00GXV0G0 ALAN SCOTT JOHNSON
PI00K4WBF3 JANE MARIE SMITH
PI09TH3EG1 KATHY ANN JOHNSON
I am using the Trim function as I had assumed there were extra spaces I didn't see. However, I'm still receiving duplicates. I always thought SELECT DISTINCT was pretty straightforward. Is it an issue with my table structure?
Thanks,
Paul
I have imported an Excel spreadsheet to a table with the following structure (just the first few columns):
HMSPIID, Text, 255, @
FIRSTNM, Text, 255, @
MIDDLENM, Text, 255, @
LASTNM, Text, 255, @
The first few rows of data look like this:
PI00GXV0G0 ALAN SCOTT JOHNSON
PI00GXV0G0 ALAN SCOTT JOHNSON
PI00GXV0G0 ALAN SCOTT JOHNSON
PI00K4WBF3 JANE MARIE SMITH
PI09TH3EG1 KATHY ANN JOHNSON
My query is as follows:
Code:
SELECT DISTINCT Trim(raw.HMSPIID) AS HMSKey, raw.FIRSTNM, raw.MIDDLENM, raw.LASTNM
FROM ImportHMSRaw AS raw
WHERE raw.HMSPIID Is Not Null;
The query returns the following:
HMSKEY FIRSTNM MIDDLENM LASTNM
PI00GXV0G0 ALAN SCOTT JOHNSON
PI00GXV0G0 ALAN SCOTT JOHNSON
PI00GXV0G0 ALAN SCOTT JOHNSON
PI00K4WBF3 JANE MARIE SMITH
PI09TH3EG1 KATHY ANN JOHNSON
I am using the Trim function as I had assumed there were extra spaces I didn't see. However, I'm still receiving duplicates. I always thought SELECT DISTINCT was pretty straightforward. Is it an issue with my table structure?
Thanks,
Paul