向现有表添加新主键
我有包含以下详细信息的表
表名称 EMPLOYEE
和列
EMPID (PK smallint not null)
EMPNAME (varchar 256 not null)
ORG (FK smallint not null)
FUNCTION (FK smallint not null)
EFF_DATE (datetime null)
AUDIT_ID (varchar null)
现在我必须向该表 ADD_UID
添加一个额外的 coulmn 并使其成为主键
我正在使用此查询但失败。
ALTER TABLE CVADMIN.EMPLOYEE
ADD ADD_UID varchar(32) NULL,
CONSTRAINT PK_EMPLOYEE PRIMARY KEY [NON]CLUSTERED (ADD_UID)
go
表“EMPLOYEE
”已定义主键。
编辑
这里的想法是新列应该是唯一的,这样如果失败我可以抛出 _KEY_VIOLATION 以便完成一些代码操作
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要添加唯一约束(主键的附加约束),请执行以下操作:
To add a unique constraint (which is additional to the primary key) do this:
我们可以通过 alter 语句在任何表上添加新列,但添加的列可以为
null
并且您知道主键在任何列上都不接受null
。因此我们不能通过alter语句在新添加的列上创建主键。
We can add new columns on any tables by alter statement but added column can be
null
and you know primary key does not acceptnull
on any column.Therefore we can not create primary key on the newly added column by alter statement.