
Ultimate access to all questions.
A data analyst has been asked to count the number of customers in each region and has written the following query:
SELECT
region,
COUNT(customer_id) AS customer_count
FROM customers
SELECT
region,
COUNT(customer_id) AS customer_count
FROM customers
If there is a mistake in the query, which of the following describes the mistake?
