SQL - how to count unique combination of columns

前端 未结 5 929
孤城傲影
孤城傲影 2021-02-04 01:39

I\'m not sure if this is possible but I want to count the number of unique value in a table. I know to count the number of unique folderIDs I do:

select count(f         


        
5条回答
  •  南方客
    南方客 (楼主)
    2021-02-04 01:59

    This will give you the count of unique folderid and userid combinations:

    SELECT count(*)
      FROM (
            SELECT DISTINCT
                   folderid,
                   userid
              FROM folder
    );
    

    Hope it helps...

提交回复
热议问题