题目:2082.富有客户的数量

题目来源:

        leetcode题目,网址:2082. 富有客户的数量 - 力扣(LeetCode)

解题思路:

       筛选除账户金额大于 500 的账户,然后对客户id进行去重计数即可。

解题代码:

# Write your MySQL query statement below
select count(distinct customer_id) as rich_count
from Store
where amount>500

总结:

        无官方题解。


你可能感兴趣的:(#,sql,leetcode,sql)