- create database db이름 default character set utf8mb4; -> 해당 db 기본자료형은 다국어 및 이모지 지원
create table 테이블이름(컬럼이름 데이터타입,...);
show tables;
desc 테이블이름;
alter table 테이블이름
rename 새테이블이름;
alter table 테이블이름
add column 컬럼이름 데이터타입;
alter table 테이블이름
modify column 컬럼이름 데이터타임;
alter table 테이블이름
change column 변경전컬럼이름 변경후컬럼이름 변경할데이터타입;
alter table 테이블이름
drop column 컬럼이름;
drop table 테이블이름;