我有一个表,我正在存储员工的详细信息.我想改变表,并将列emp_code中的一个设置为主键.它的数据类型是nvarchar(max),但是我无法将其设置为主键.
我运行以下查询:
ALTER TABLE user_master ADD PRIMARY KEY (emp_code)
但它给我一个错误:
Msg 1919,Level 16,State 1,Line 1
Columnemp_code
in tableuser_master
is of a type that is invalid for use as a key column in an index.
Msg 1750,State 0,Line 1
Could not create constraint. See prevIoUs errors.
我该如何克服呢?
解决方法
索引的关键字不能超过900字节的总大小.将数据类型更改为NVARCHAR(450).如果不合适,请使用代理键(通常为IDENTITY列).