MySQL TRUNCATE와 DROP 명령의 가장 큰 차이점은 TRUNCATE 명령은 테이블의 구조를 파괴하지 않지만 대조적으로 DROP 명령은 테이블의 구조도 파괴한다는 것입니다.
예시
mysql> Create table testing(id int PRIMARY KEY NOT NULL AUTO_INCREMENT,Name Varchar(20)); Query OK, 0 rows affected (0.24 sec) mysql> Insert into testing(Name) Values('Ram'),('Mohan'),('John'); Query OK, 3 rows affected (0.12 sec) Records: 3 Duplicates: 0 Warnings: 0 mysql> Select * from testing; +----+-------+ | id | Name | +----+-------+ | 1 | Ram | | 2 | Mohan | | 3 | John | +----+-------+ 3 rows in set (0.00 sec)
이제 다음과 같이 'testing' 테이블을 TRUNCATING한 후에도 해당 구조는 여전히 데이터베이스에 남아 있으며 PRIMARY KEY도 초기화합니다.
mysql> Truncate table testing; Query OK, 0 rows affected (0.04 sec) mysql> DESCRIBE testing; +-------+-------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +-------+-------------+------+-----+---------+----------------+ | id | int(11) | NO | PRI | NULL | auto_increment | | Name | varchar(20) | YES | | NULL | | +-------+-------------+------+-----+---------+----------------+ 2 rows in set (0.21 sec)
그러나 테이블에 DROP 명령을 적용하면 구조도 데이터베이스에서 삭제됩니다.
mysql> Drop table testing; Query OK, 0 rows affected (0.08 sec) mysql> DESCRIBE testing; ERROR 1146 (42S02): Table 'query.testing' doesn't exist