Extrae el año de la fecha y agrúpalo por él
select year(date) as year,
count(customer_id) as customers
from your_table
group by year
order by year asc
Extrae el año de la fecha y agrúpalo por él
select year(date) as year,
count(customer_id) as customers
from your_table
group by year
order by year asc