How does MySQL reindex a table?

how to reindex mysql table

  • I have a table with many rows but they are out of order. Im using the field "id" as the primary key. I also have a "date" field which is a datetime field. How could i reindex the table so that the entries are id'd in chronological order according to the date field

  • Answer:

    the way i would do it is to create a new table with auto increment index and just select all your old table into it ordering by date. you can then remove your old table.

GrapeCamel at Stack Overflow Visit the source

Was this solution helpful to you?

Other answers

Why do you want the sequence of IDs to correlate with the dates? It sounds like you want to do ORDER BY id and have the rows come back in date order. If you want rows in date order, just use ORDER BY date instead. Values in an autoincrement ID column should be treated as arbitrary. Relying on your IDs being in date order is a bad idea.

Wyzard

You can use http://dev.mysql.com/doc/refman/5.1/en/alter-table.html t ORDER BY col; The allowed syntax of ORDER BY is as in SELECT statements.

sibidiba

The following SQL snippet should do what you want. ALTER TABLE test_table ADD COLUMN id2 int unsigned not null; SET @a:=0; UPDATE test_table SET id2=@a:=@a+1 ORDER BY `date`; ALTER TABLE test_table DROP id; ALTER TABLE test_table CHANGE id2 id int UNSIGNED NOT NULL AUTO_INCREMENT, ADD PRIMARY KEY (id); Keep in mind that you can never guarantee the order of an auto-incremented column once you start inserting and removing data, so you shouldn't be relying on any order except that which you specify using ORDER BY in your queries. This is an expensive operation that you are doing, as it requires indexes to be completely re-created, so I wouldn't suggest doing it often.

zombat

How about something like a simple query using a variable: @ROW = 0; UPDATE `tbl_example` SET `id` = @ROW := @ROW+1 ORDER BY `fld_date` ASC; This will order your rows like: 0,1,2,4,5...etc by your date.

Ryun

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.