码迷,mamicode.com
首页 > 数据库 > 详细

Sql Server 增加字段、修改字段、修改类型、修改默认值

时间:2018-07-05 14:48:55      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:object   scons   cts   and   select   默认值   null   log   alter   

1、修改字段名:

  alter table 表名 rename column A to B

2、修改字段类型:

  alter table 表名 alter column 字段名 type not null

3、修改字段默认值
  alter table 表名 add default (0) for 字段名 with values

  如果字段有默认值,则需要先删除字段的约束,在添加新的默认值,

  select c.name from sysconstraints a
  inner join syscolumns b on a.colid=b.colid
  inner join sysobjects c on a.constid=c.id
  where a.id=object_id(‘表名‘)
  and b.name=‘字段名‘

  根据约束名称删除约束

  alter table 表名 drop constraint 约束名

  根据表名向字段中增加新的默认值

  alter table 表名 add default (0) for 字段名 with values

4、增加字段:

  alter table 表名 add 字段名 type not null default 0

5、删除字段:

  alter table 表名 drop column 字段名;

Sql Server 增加字段、修改字段、修改类型、修改默认值

标签:object   scons   cts   and   select   默认值   null   log   alter   

原文地址:https://www.cnblogs.com/z-hj/p/9267897.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!