Mysql
 sql >> Database >  >> RDS >> Mysql

Come incrementare il conteggio delle occorrenze del valore della colonna in MySQL

Puoi utilizzare le variabili nelle versioni precedenti di MySQL:

select t.*,
       (@rn := if(@ce = customer_email, @rn + 1,
                  if(@ce := customer_email, 1, 1)
                 )
       ) as occurrences
from (select t.*
      from t
      order by customer_email, created_at
     ) t cross join
     (select @ce := '', @rn := 0) params;

In MyQL 8+, consiglierei row_number() :

select t.*,
       row_number() over (partition by customer_email order by created_at) as occurrences
from t;