列如:
create table abc
(
id int primary key,
name char(10),
SEX CHAR(10),
city char (10) default 'beijing',
)
go
create table abc
(
id int primary key,
name char(10),
SEX CHAR(10),
city char (10) default 'beijing',
)
go
1、首先找出该字段绑定约束的值
select name from sysobjects
where object_id('abc')=parent_obj and xtype='D'
select name from sysobjects
where object_id('abc')=parent_obj and xtype='D'
2、再删除该约束
alter table abc drop constraint DF__abc__city__6477ECF3 city
3、重新创建默认值
alter table abc add default 'shanghai' for city
好象很麻烦,呵呵,不过在创建的时候可以直接写出约束名
这样在维护的时候就比较方便了
内容引用:
谢谢老三的指导,呵呵
本文转自 jankie 51CTO博客,原文链接:http://blog.51cto.com/jankie/11164,如需转载请自行联系原作者