给表添加索引出现的两个问题!!!不知有没有人遇到过?

时间:2021-03-28 20:53:24
1:一个是这样的问题:
Create unique index aborted on duplicate key.  Primary key is
'"SHANGHAI200408161512"'
怎么解决,最好能给出详细的解决方法

2:还有就是这个问题:
The identifier that starts with 'ConfigAttributeFieldTable_idx0' is too long.
Maximum length is 30.
这个规定的长度怎么加长,我不想改索引的名字,现在长度最多不能超过30个字符。

谢谢!

3 个解决方案

#1


1、你可以建立非唯一索引,你建索引的列有重复数据,所以不能建立唯一索引。
2、好像改不了,我没有改过。

#2


你能告诉我怎么建立非唯一索引吗?

#3


建索引时不要加 unique 选项即可。附基本语法:
create index index_name on table_name (column1)

#1


1、你可以建立非唯一索引,你建索引的列有重复数据,所以不能建立唯一索引。
2、好像改不了,我没有改过。

#2


你能告诉我怎么建立非唯一索引吗?

#3


建索引时不要加 unique 选项即可。附基本语法:
create index index_name on table_name (column1)