TRUNCATE
语句以非事务方式从表中删除所有数据。可认为 TRUNCATE
语句同 DROP TABLE
+ CREATE TABLE
组合在语义上相同,定义与 DROP TABLE
语句相同。
TRUNCATE TABLE tableName
和 TRUNCATE tableName
均为有效语法。
OptTable:
TableName:
Query OK, 0 rows affected (0.11 sec)
INSERT INTO t1 VALUES (1),(2),(3),(4),(5);
Records: 5 Duplicates: 0 Warnings: 0
+---+
+---+
| 1 |
| 2 |
| 3 |
| 4 |
+---+
5 rows in set (0.00 sec)
TRUNCATE t1;
Empty set (0.00 sec)
INSERT INTO t1 VALUES (1),(2),(3),(4),(5);
Query OK, 5 rows affected (0.01 sec)
Records: 5 Duplicates: 0 Warnings: 0