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?
|
|
I can select all the distinct values in a column in the following ways:
But how do I get the row count from that query? Is a subquery required?
|
||
|
|
|
You should be able to use this:
This will count only the distinct values for that column. |
||||||||
|
|
|
select Count(distinct columnName) as columnNameCount from tableName |
||||
|
|
|
you've got to count that distinct col, then give it an alias. |
||
|
|
|
|
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(*) from ( SELECT distinct column1,column2,column3,column4 FROM abcd ) T This will give count of distinct group of columns. |
||
|
|