I\'m using php and mysql. I have a table with the id column set to auto increment as the primary key. I\'m trying to add another column called sort_order. The sort_order col
You may store 0 in sort_order and then sort by sort_order + id. Results will be same because sort_order will be exact 0 instead of id ( less on id)
sort_order + id
sort_order
id