sql server刪除外鍵約束
來源:易賢網(wǎng) 閱讀:878 次 日期:2014-12-22 15:18:47
溫馨提示:易賢網(wǎng)小編為您整理了“sql server刪除外鍵約束”,方便廣大網(wǎng)友查閱!

x先找出約束名字

然后刪除它

我給個例子

--測試環(huán)境

--主表

create table test1(id int primary key not null,value int)

insert test1 select 1,2

go

--從表

create table test2(id int references test1(id),value int)

go

--第一步:找出test2表上的外鍵約束名字

--2000

exec sp_helpconstraint 'test2'

--可以在constraint_name 屬性中找到外鍵約束名字

--2005

select name

from sys.foreign_key_columns f join sys.objects o on f.constraint_object_id=o.object_id

where f.parent_object_id=object_id('test2')

/*

name

---------------------------------

fk__test2__id__08ea5793*/

--第二步:刪除外鍵約束

alter table test2 drop constraint fk__test2__id__08ea5793

--第三步:檢查表上是否還有外鍵約束

--只要使用第一步里面的查找語句即可

更多信息請查看IT技術專欄

更多信息請查看數(shù)據(jù)庫
易賢網(wǎng)手機網(wǎng)站地址:sql server刪除外鍵約束

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務許可證:(云)人服證字(2023)第0102001523號
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關注公眾號:hfpxwx
咨詢QQ:1093837350(9:00—18:00)版權所有:易賢網(wǎng)