ALTER TABLE `table` CHANGE `기존 컬럼명` `변경 컬럼명` 타입 ex) int;


ALTER TABLE `table` ADD `추가 컬럼명` 타입;

+ Recent posts