TRUNCATE
The TRUNCATE TABLE table
statement is used to delete all data from a table. It's much more efficient than DELETE FROM table
.
TRUNCATE TABLE monitor;
Query OK, 0 rows affected (0.02 sec)
The TRUNCATE TABLE table
statement is used to delete all data from a table. It's much more efficient than DELETE FROM table
.
TRUNCATE TABLE monitor;
Query OK, 0 rows affected (0.02 sec)