programing

쿼리를 사용하여 SQL Server에서 null이 아닌 제약 조건을 제거하는 방법

i4 2023. 5. 16. 22:09
반응형

쿼리를 사용하여 SQL Server에서 null이 아닌 제약 조건을 제거하는 방법

데이터 손실 없이 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로.null

ALTER TABLE test ALTER COLUMN column_01 DROP NOT NULL;

참조: https://www.tutorialspoint.com/How-can-we-remove-NOT-NULL-constraint-from-a-column-of-an-existing-MySQL-table

ALTER TABLE tableName MODIFY columnName columnType NULL;

언급URL : https://stackoverflow.com/questions/3370159/how-to-remove-not-null-constraint-in-sql-server-using-query

반응형