데이터 손실없이 SQL Server 2008에서 null이 아닌 제약 조건을 제거하려고합니다.
답변
ALTER TABLE YourTable ALTER COLUMN YourColumn columnType NULL
답변
제약 조건을 제거 not null
에null
ALTER TABLE 'test' CHANGE COLUMN 'testColumn' 'testColumn' datatype NULL;
답변
열 제약 조건 제거 : not null
tonull
ALTER TABLE test ALTER COLUMN column_01 DROP NOT NULL;
답변
ALTER TABLE tableName MODIFY columnName columnType NULL;