主见表: UserS
主键:UserID(我想删除这个但是系统说外键冲突应改怎么写执行语句啊?)
外键表:ConfirmOrde
主键:confirmOrderID
外键:UserID
临时禁用外键约束
-- --禁用所有约束
--exec sp_msforeachtable 'alter table ? nocheck CONSTRAINT all'
-- --再启用所有外键约束
--exec sp_msforeachtable 'alter table ? check constraint all'
http://www.cnblogs.com/downmoon/archive/2009/09/11/1564391.html
先删ConfirmOrde