How can I count unique pairs of values in SQL?

前端 未结 4 835
别那么骄傲
别那么骄傲 2021-01-01 15:58

With the following sql statement I can get all unique values with their counts for a given column:

select column, count(column) as count 
         from table          


        
4条回答
  •  隐瞒了意图╮
    2021-01-01 16:19

    SELECT first_name, last_name, COUNT(distinct last_name) AS c
    FROM ttable
    GROUP BY first_name, last_name
    HAVING c > 999
    ORDER BY c DESC 
    

    Adding distinct will do it in MYSQL. Thanks

提交回复
热议问题