create table tabel명 ( column명 VARCHAR(100) );
show tab;
drop table table명;
rename table table명 to 변경할table명;
테이블 스키마 복사
create table new_table명 like old_table명 ;
테이블 스키마 & 데이터 복사
create table new_table명 (select * from old_table명);
데이터 복사
insert into receive_table명 (select * from serve_table명);
참고