Skip to content

2082. The Number of Rich Customers

1
2
3
SELECT COUNT(DISTINCT customer_id) AS rich_count
FROM Store
WHERE amount > 500;