count(distinct case when
时间: 2023-04-24 07:01:58 浏览: 197
使用SQL语句统计数据时sum和count函数中使用if判断条件的讲解
当条件成立时,计算不同值的数量。
例如:
count(distinct case when gender='male' then user_id end)
这个语句的意思是:当用户的性别为男性时,统计不同的用户ID数量。
阅读全文
使用SQL语句统计数据时sum和count函数中使用if判断条件的讲解