Hi YoungManRiver,
I have 2 possible solutions for you, but i'm sure others will post better ones (i'm still fairly new to MySQL myself)
However 2 ways are this:
CREATE TABLE new_table AS
SELECT * FROM existing_table
ORDER BY primary_key;
This will re-create a new table which contains all of...