A MySQL table has only 5 fields but hundreds of rows. With good advice (tks Lacoz) I have duplicated the table while ignoring the duplicate rows and now have a new table that does not contain the duplicated rows.
Problem: the new table was inputted in a scrambled order (i.e. when observing the first field, called rel_id). While this doesn't matter in the real world, at this point it would be helpful to have them in the same order (for referring to past notes, etc).
Example Row: (Note that rel_id is an auto-incrementing, primary key field)
'rel_id' => 1
'host' => 17
'host_type' => 'client'
'rep' => 7
'rep_type => 'cli_mgr'
Here is the method by which user Lacoz assisted me to create the new table, without duplicates:
mysql_query("create table rels2 like rels");
mysql_query("alter table rels2 add unique index(host,host_type,rep,rep_type)");
mysql_query("insert IGNORE into rels2 select * from rels");
I tried adding "ORDER BY" to the final query, like this:
mysql_query("insert IGNORE into rels2 select * from rels ORDER BY rel_id");
but it didn't solve the problem. Rows are still in scrambled order.
First Question: Why did this happen?
Second Question: How could I have ensured that the data was input in the correct order?
Necessary Outcome: For various reasons I really need the data returned to its former appearance (but sans the duplicates). Can someone suggest another approach, even a php script, to accomplish this?
PS: After several google searches I don't think it's possible to sort the table's raw data, only the output. Correct? (It is hard to be sure when a novice to both the concepts and the terminology - we all must start somewhere).