Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Como incrementar a contagem de ocorrências do valor da coluna no MySQL


Você pode usar variáveis ​​em versões anteriores do 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;

No MyQL 8+, eu recomendaria row_number() :
select t.*,
       row_number() over (partition by customer_email order by created_at) as occurrences
from t;