标签: mysql
create unique clustered index NIK1_PK on NIK1 ( ID_PLAN ASC, NIK ASC );
这有什么问题?
答案 0 :(得分:2)
您不能使用CLUSTERED关键字来创建索引。
CLUSTERED
请在此处查看InnoDB如何决定制作群集索引的索引:Clustered and Secondary Indexes in InnoDB