Estrai l'anno dalla data e raggruppa per esso
select year(date) as year,
count(customer_id) as customers
from your_table
group by year
order by year asc
Estrai l'anno dalla data e raggruppa per esso
select year(date) as year,
count(customer_id) as customers
from your_table
group by year
order by year asc