vote up 0 vote down star

Using SQL Server, I have...

ID  SKU	PRODUCT
=======================
1   FOO-23	Orange
2   BAR-23	Orange
3   FOO-24	Apple
4   FOO-25	Orange

I want

1   FOO-23	Orange
3   FOO-24	Apple

This query isn't getting me there. How can I SELECT DISTINCT on just one column?

SELECT 
[ID],[SKU],[PRODUCT]
FROM [TestData] 
WHERE ([PRODUCT] = 
(SELECT DISTINCT [PRODUCT] FROM [TestData] WHERE ([SKU] LIKE 'FOO-%')) 
ORDER BY [ID]
flag

Can we assume that you don't care about the suffix on the SKU column data? I.E., You only care about "FOO-" and not "FOO-xx" – Kane Jun 8 at 18:18
What is your logic for choosing ID = 1, SKU = FOO-23 over the other values? It's easy to create a query that answers specfically for ID = 1 but fails for a general case – gbn Jun 8 at 18:20
if you really want distinct on one column, wouldn't your "I want" example include ID 1 & 3?? – KM Jun 8 at 18:28
gbn - this is an overly simplified example (obviously). What I am trying to show is one example that satisfies both criteria. There isn't (and need not be) logic to which one is chosen. – mmcglynn Jun 8 at 19:36
1  
Help me out - what is so bad about this question that gives me 2 down votes? – mmcglynn Jun 8 at 20:34
show 1 more comment

4 Answers

vote up 2 vote down check

Assuming that you're on SQL Server 2005 or greater, you can use a CTE with ROW_NUMBER():

SELECT  *
FROM    (SELECT ID, SKU, Product,
                ROW_NUMBER() OVER (PARTITION BY PRODUCT ORDER BY ID) AS RowNumber
         FROM   MyTable
         WHERE  SKU LIKE 'FOO%') AS a
WHERE   a.RowNumber = 1
link|flag
vote up 0 vote down

You cannot do this without using an aggregate function. See my answer here.

You can do perhaps:

SELECT DISTINCT MIN([ID]), MIN([SKU]), [PRODUCT]
FROM ...
GROUP BY [ID], [SKU]

But you need to determine which aggregate function fits with your business needs.

link|flag
2  
THis may not work as it may give the wrong answer as the minId and min SKu may not be for the same record. – HLGEM Jun 8 at 18:22
Good call, I missed that. – Nathan Koop Jun 8 at 18:30
vote up 0 vote down
SELECT min (id) AS 'ID', min(sku) AS 'SKU', Product
    FROM TestData
    WHERE sku LIKE 'FOO%' -- If you want only the sku that matchs with FOO%
    GROUP BY product 
    ORDER BY 'ID'
link|flag
Was going to +1 this, because I think GROUP BY is the right way to go - but the minimum ID and the minimum SKU may not happen to belong to the same record. It's hard to determine what are the correct ID and SKU to report for a given PRODUCT. – Carl Manaster Jun 8 at 20:17
vote up 0 vote down

try this:

SELECT 
    t.*
    FROM TestData t
        INNER JOIN (SELECT
                        MIN(ID) as MinID
                        FROM TestData
                        WHERE SKU LIKE 'FOO-%'
                   ) dt ON t.ID=dt.MinID

EDIT
once the OP corrected his samle output (previously had only ONE result row, now has all shown), this is the correct query:

declare @TestData table (ID int, sku char(6), product varchar(15))
insert into @TestData values (1 ,  'FOO-23'      ,'Orange')
insert into @TestData values (2 ,  'BAR-23'      ,'Orange')
insert into @TestData values (3 ,  'FOO-24'      ,'Apple')
insert into @TestData values (4 ,  'FOO-25'      ,'Orange')

--basically the same as @Aaron Alton's answer:
SELECT
    dt.ID, dt.SKU, dt.Product
    FROM (SELECT
              ID, SKU, Product, ROW_NUMBER() OVER (PARTITION BY PRODUCT ORDER BY ID) AS RowID
              FROM @TestData
              WHERE  SKU LIKE 'FOO-%'
         ) AS dt
    WHERE dt.RowNumber=1
    ORDER BY dt.ID
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.