declare @esql varchar(1000);
declare fcursor cursor –定义游标
for (select ‘alter table ‘+o.name+’ drop constraint ‘+f.name+’;’ as commandsql from sys.foreign_keys f
join sys.all_objects o on f.parent_object_id = o.object_id where o.type = ‘u’ and f.type = ‘f’) –查出需要的集合放到游标中
open fcursor; –打开游标
fetch next from fcursor into @esql; –读取第一行数据
while @@fetch_status = 0
begin
exec(@esql);
fetch next from fcursor into @esql; –读取下一行数据
end
close fcursor; –关闭游标
deallocate fcursor; –释放游标
go
一键删除数据库所有的外键约束-FOREIGN_KEYS
•
生活家
赞 (0)
麦玲玲免费八字,问下大师,这是我从麦玲玲官网查到的五行八字,我看不懂请
上一篇
2022年3月21日
如何看八字好不好,怎么看生辰八字好不好
下一篇
2022年3月21日