当前位置:数据库 > SQLServer >>

MSSQL中如何用SQL语句为字段增加不为空的约束

答案:alter table tablename add newfield varchar(10) not null default '' 对于有数据的表,增加非空字段,要加入默认值。 如果原有字段改为非空,在有数据的情况要,要先将空值赋值再作修改: update tablename set fieldname='' where fieldname is null alter table tablename alter COLUMN fieldname varchar(10) not null
其他:alter table tablename add not null(字段名); alter table 表 alter column 列 类型 not null

上一个:ASP.NET+MSSQL
下一个:MSSQL数据库怎么存0.6类的小数字?

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,