TRUNCATE TABLE#

TRUNCATE TABLE table_name

TRUNCATE TABLE语句用清空指定的表。

Example: 清空t1表#

TRUNCATE TABLE t1;
-- Truncate table t1? yes/no
-- yes
-- SUCCEED