YS's develop story

MySQL) 테이블 not null -> null 허용가능으로 컬럼 변경하기, alter table 본문

Database/MySQL

MySQL) 테이블 not null -> null 허용가능으로 컬럼 변경하기, alter table

Yusang 2021. 1. 25. 08:24

alter table Event modify column [칼럼 이름] [칼럼 타입]  : 

칼럼에 null 값 허용

 

alter table Event modify column [칼럼 이름] [칼럼 타입] not null  : 

칼럼에 null 값 비허용

 

Comments