DB/MySQL

컬럼 추가, 컬럼명 변경

암초보 2011. 9. 24. 22:29

alter table 테이블명 add (컬럼명 자료형, ...);
alter table 테이블명 change old컬럼명 new컬럼명 자료형;