I'm using jQuery UI's sortable list to allow the user to drag and change the sorting of a list.
I normally get back the ids of each item and the array key then update each row's sort number in the database.
This is all fine and looking at examples it seems to be the normal way of doing it for most.
What I'd like to know is if running UPDATE queries for every single item is the most efficient way of storing the sorting order? The above works well for a few items but what if I have a list of say 200 items? It seems excessive to run an UPDATE query 200 times just to move item 2 up to the first position.
Does anyone have a more efficient way of doing this?
Thanks.