0

In phpmyadmin there is an option to alter the current table order....how can I know what the current order is?

user_78361084
  • 3,538
  • 22
  • 85
  • 147

1 Answers1

0

You can't. There is no such thing.

To be precise: in MyISAM engine, current order is whatever the order was when the last ALTER TABLE ORDER BY was performed, modified by all the deletions and insertions since.

InnoDB just sorts the tables as it wishes.

Mchl
  • 61,444
  • 9
  • 118
  • 120