MySql Error 1064唯一聚簇索引

时间:2012-02-16 06:29:45

标签: mysql

create unique clustered index NIK1_PK on NIK1 (
 ID_PLAN ASC,
 NIK ASC
);

这有什么问题?

1 个答案:

答案 0 :(得分:2)

您不能使用CLUSTERED关键字来创建索引。

请在此处查看InnoDB如何决定制作群集索引的索引:Clustered and Secondary Indexes in InnoDB