mysql
MySQL) 테이블 not null -> null 허용가능하게 바꾸기 alter table
2hansoul
2021. 7. 14. 18:50
반응형
lter table Event modify column [칼럼 이름] [칼럼 타입] :
칼럼에 null 값 허용
alter table Event modify column [칼럼 이름] [칼럼 타입] not null :
칼럼에 null 값 비허용
반응형