Twoje grupy są definiowane, zaczynając od code = 100
. To trochę trudne. W MySQL 8+ możesz użyć funkcji okna do zdefiniowania grup, a następnie row_number()
aby przypisać 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;
Jest to znacznie bardziej skomplikowane we wcześniejszych wersjach MySQL.
Grupę możesz zidentyfikować za pomocą podzapytania:
select c.*,
(select count(*)
from carts c2
where c2.id <= c.id and c2.code = 100
) as grp
from carts c;
Następnie możesz użyć zmiennych, aby uzyskać żądane informacje:
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;