How to remove not null constraint in sql server using query

后端 未结 4 1024
小鲜肉
小鲜肉 2020-12-24 04:03

I am trying to remove not null constraint in sql server 2008 without losing data.

4条回答
  •  悲&欢浪女
    2020-12-24 04:43

    Remove constraint not null to null

    ALTER TABLE 'test' CHANGE COLUMN 'testColumn' 'testColumn' datatype NULL;
    

提交回复
热议问题