Posts

Showing posts from July, 2021

Update all rows at a time

set @newid=100; update order_details set child_order_id = (@newid:=@newid+1) order by ID;