DB/MySQL - MariaDB
필드 순서 변경 및 추가
Dev. Tool
2014. 11. 17. 00:59
alter table 테이블명 add 컬럼명 type명 after 위치할컬럼명;
type 명은 varchar 나 int 등등
alter table 테이블명 modify 컬럼명 type명 after 위치할컬럼명; type 명은 안써도 상관 없음. 는 써야됨
alter table 테이블명 add 컬러명 enum('0', '1') 위치할컬럼명;