怎样设置sql数据库初始值为空
发布网友
发布时间:2022-04-10 17:27
我来回答
共2个回答
热心网友
时间:2022-04-10 18:56
设计表打开,在该列下有个默认值,上面输入0就行
或用命令
在该列后加
default
0
热心网友
时间:2022-04-10 20:14
楼主是不是这个意思?
use
Test
go
create
table
T1(
ID
int
not
null--用not
null
这一列非null
)
go
表已存在时
create
table
T2(
ID
int
--默认为null
)
go
alter
table
t2
alter
column
ID
int
not
null