8
如何在SQL Server中删除外键?
我通过以下方式创建了外键(在SQL Server中): alter table company add CountryID varchar(3); alter table company add constraint Company_CountryID_FK foreign key(CountryID) references Country; 然后,我运行以下查询: alter table company drop column CountryID; 我得到这个错误: 消息5074,级别16,状态4,第2行 对象'Company_CountryID_FK'依赖于列'CountryID'。 Msg 4922,第16级,状态9,第2行 ALTER TABLE DROP COLUMN CountryID失败,因为一个或多个对象访问此列 我已经尝试过了,但是似乎没有用: alter table company drop foreign key Company_CountryID_FK; alter table company drop column CountryID; 我需要怎么做才能删除CountryID色谱柱? …
201
sql-server
tsql