How to Truncate a Table in MySQL?
How to Truncate a Table in MySQL?
Add Comment
TRUNCATE TABLE table_name;
--the TABLE keyword is actually optional:
TRUNCATE table_name;
How to Truncate a Table in MySQL?
TRUNCATE TABLE table_name;
--the TABLE keyword is actually optional:
TRUNCATE table_name;