1. 개요
테이블 생성, 삭제 확인 관련 명령어
2. 자료형
숫자형 TINYINT, INT, FLOAT
문자형 CHAR, VARCHAR, TEXT, ENUM
날짜형 DATE, DATETIME, TIMESTAMP
3. Command
생성 | create table [table명] ( [column명] [type], [column명] [type] ); |
삭제 | drop table [table명]; |
확인 | show tables; 테이블 확인 explain [table명]; 테이블 구조 확인 describe [table명]; 테이블 구조 확인 |
이름 변경 | rename table [이전 table명] TO [이후 table명]; |