How to sort a MYSQL table in a permanent way?

You can do this with ALTER TABLE

f.e.

ALTER TABLE tablename ORDER BY columnname ASC;.

but be aware that the table does not remain in this order after inserts and deletes

Leave a Comment