MSSQL修改列属性不允许为空

2024-12-02 21:03:59
推荐回答(3个)
回答(1):

以下语句在SQL Server2000测试通过
alter table test.dbo.test1 alter column a varchar(1000) not null
a的字段类型根据需要进行修改。

回答(2):

alter table test1 alter colmun a not null

回答(3):

alter table test1 change a a int not null;