• rename 명령문 : 테이블 이름을 변경
  • alter 명령문 : 테이블의 컬럼을 추가, 변경, 삭제
  • drop table 명령문 : 테이블 삭제
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
show tables;
-- rename
rename table test_table1 to test_table3;
show tables;

-- 속성변경
desc test_table3;
alter table test_table3 modify data1 int(100);
desc test_table3;

-- 컬럼변경
alter table test_table3 change data1 data10 int(200);
desc test_table3;

-- 컬럼추가
alter table test_table3 add data4 int(10);
desc test_table3;

-- 컬럼삭제
alter table test_table3 drop data4;
desc test_table3;

-- 테이블 삭제
drop table test_table3;
show tables;