I\'m trying to add rows to a column, keeping the order of the newest column set to one, and all other rows counting up from there.
order
In this case, I add
SET @a = 0; UPDATE favorits SET order = @a:=@a+1;