반응형
쿼리를 사용하여 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
반응형
'programing' 카테고리의 다른 글
특정 파일의 오류를 무시하도록 Eclipse 설정 변경 (0) | 2023.05.16 |
---|---|
Postgre 구성 방법들어오는 모든 연결을 수락하는 SQL (0) | 2023.05.16 |
Angular 2와 함께 사용해야 하는 폴더 구조 유형은 무엇입니까? (0) | 2023.05.16 |
Swift에서 속성 값을 기준으로 사용자 지정 개체 배열을 정렬하는 방법 (0) | 2023.05.16 |
사용자의 표준 시간대를 가져오는 방법? (0) | 2023.05.16 |