To powinno działać
update
content,
(
select
@row_number:=ifnull(@row_number, 0)+1 as new_position,
ContentID
from content
where CategoryID=1
order by position
) as table_position
set position=table_position.new_position
where table_position.ContentID=content.ContentID;
Ale wolałbym najpierw zastosować to, aby usunąć ustawienie zmiennej zdefiniowanej przez użytkownika
set @row_number:=0;
Dodane przez Mchla:
Możesz to zrobić w jednym oświadczeniu takim jak to
update
content,
(
select
@row_number:=ifnull(@row_number, 0)+1 as new_position,
ContentID
from content
where CategoryID=1
order by position
) as table_position,
(
select @row_number:=0
) as rowNumberInit
set position=table_position.new_position
where table_position.ContentID=content.ContentID;