赞
踩
1. 创建表时指定默认值
- create table dbo.t1 (
- id1 INT DEFAULT 5
- )
2. 创建表时指定默认值,并指定约束名
- create table dbo.t1 (
- id1 INT CONSTRAINT df_t1_id1 DEFAULT 5
- )
3. 创建表时没有指定默认值,通过sql命令添加默认值
- create table dbo.t1 (
- id1 INT
- )
alter table dbo.t1 add default 5 for id1
4. 通过sql命令添加默认值,并指定约束名称
- create table dbo.t1 (
- id1 INT
- )
alter table dbo.t1 add constraint df_t1_id1 default 5 for id1
5. 删除默认值约束
alter table dbo.t1 drop constraint 约束名
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。