AIHelperBot
Loading...
Open main menu
SQL Generator
Pricing
Posts
Snippet
which is the most common city for customers
Copy
SELECT
city,
COUNT
(
*
)
AS
num_customers
FROM
customer_list
GROUP
BY
city
ORDER
BY
num_customers
DESC
LIMIT
1
;
dvdrental
public