I added a new index in my table and now phpMyAdmin is sorting the rows by that column by default. How do I make phpMyAdmin sort the rows by the id column instea
id
You can resolve this issue by adding default order by to the tableusing the alter table query.
QUERY: alter table links order by id;
links
If you not specify any order by clause in where clause, then rows will sort by default "id" column.