mysql通过不工作改变表顺序

时间:2014-03-20 07:54:12

标签: php mysql laravel

我在网上搜索了很多。我能理解的是,在我之前,很多人都遇到过这个问题,并且它也被归为mysql个错误。但我无法找到任何解决方案。问题是我无法使用此命令 -

alter table areas order by area_name;

我收到警告 -

ORDER BY ignored as there is a user-defined clustered index in the table 'areas'

我只想根据' area_name'(即区域名称)对表格进行排序。只是添加,我试图在我的laravel app

的数据库中执行此操作

1 个答案:

答案 0 :(得分:1)

如果数据库引擎 InnoDB ,则无法执行此操作。

From the doc:

  

ORDER BY对InnoDB表没有意义,因为InnoDB总是如此   根据聚集索引对表行进行排序。