使用T-SQL 创建表的列时怎么添加默认约束

2024-12-25 12:52:45
推荐回答(2个)
回答1:

create table a(
id int not null default 0
)

回答2:

create table a(
id int default 0
)