vote up 6 vote down star

I can select all the distinct values in a column in the following ways:

  • SELECT DISTINCT column_name FROM table_name;
  • SELECT column_name FROM table_name GROUP BY column_name;

But how do I get the row count from that query? Is a subquery required?

flag

Which version of SQL Server are you using? – Kevin Fairchild Sep 26 '08 at 19:54

5 Answers

vote up 24 vote down check

You should be able to use this:

SELECT COUNT(DISTINCT column_name) AS some_alias FROM table_name

This will count only the distinct values for that column.

link|flag
Neat, i didn't know you could put the distinct keyword there. – Gorgapor Sep 26 '08 at 19:55
1  
As an aside, if you are going to use this value for anything in code and you use associative arrays to access the values from a query, you'll probably want to alias the column. – Noah Goodrich Sep 26 '08 at 20:00
perhaps to edit that in there for posterity? – Gorgapor Sep 26 '08 at 20:01
vote up 0 vote down

select count(*) from ( SELECT distinct column1,column2,column3,column4 FROM abcd ) T

This will give count of distinct group of columns.

link|flag
vote up 3 vote down

Be aware that Count() ignores null values, so if you need to allow for null as its own distinct value you can do something tricky like:

select count(distinct my_col)
       + count(distinct Case when my_col is null then 1 else null end)
from my_table
/
link|flag
vote up 3 vote down
SELECT COUNT(DISTINCT column_name) FROM table as column_name_count;

you've got to count that distinct col, then give it an alias.

link|flag
vote up 3 vote down

select Count(distinct columnName) as columnNameCount from tableName

link|flag
You're giving an alias to the table when I think you mean the column? – Mike Woodhouse Sep 26 '08 at 20:03
Yup.. edited. Thanks :) – Wayne Sep 26 '08 at 20:16

Your Answer

Get an OpenID
or

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