I tuoi gruppi sono definiti iniziando con code = 100
. Questo è un po' complicato. In MySQL 8+, puoi usare le funzioni della finestra per definire i gruppi e poi row_number()
per assegnare il serial_number
:
select c.*,
row_number() over (partition by grp order by id) as serial_number
from (select c.*,
sum( code = 100 ) over (order by id) as grp
from carts c
) c;
Questo è molto più complicato nelle versioni precedenti di MySQL.
Puoi identificare il gruppo utilizzando una sottoquery:
select c.*,
(select count(*)
from carts c2
where c2.id <= c.id and c2.code = 100
) as grp
from carts c;
È quindi possibile utilizzare le variabili per ottenere le informazioni desiderate:
select c.*,
(@rn := if(@g = grp, @rn + 1,
if(@g := grp, 1, 1)
)
) as serial_number
from (select c.*,
(select count(*)
from carts c2
where c2.id <= c.id and c2.code = 100
) as grp
from carts c
order by grp, id
) c cross join
(select @g := -1, @rn := 0) params;