2082. The Number of Rich Customers¶ SQL 1 2 3SELECT COUNT(DISTINCT customer_id) AS rich_count FROM Store WHERE amount > 500;