How to remove not null constraint in sql server using query

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

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

4条回答
  •  庸人自扰
    2020-12-24 05:01

    Remove column constraint: not null to null

    ALTER TABLE test ALTER COLUMN column_01 DROP NOT NULL;
    

提交回复
热议问题