SQL to find the number of distinct values in a column

前端 未结 11 1021
隐瞒了意图╮
隐瞒了意图╮ 2020-11-28 00:19

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

  • SELECT DISTINCT column_name FROM table_name;
  • SELECT column_
11条回答
  •  -上瘾入骨i
    2020-11-28 01:02

    You can use the DISTINCT keyword within the COUNT aggregate function:

    SELECT COUNT(DISTINCT column_name) AS some_alias FROM table_name
    

    This will count only the distinct values for that column.

提交回复
热议问题