TRUNCATE 和 TRUNCATE TABLE 有什么区别?

What is the difference between TRUNCATE and TRUNCATE TABLE?

MySQL 似乎允许 TRUNCATE table_name,实际上确实截断了 table。似乎有性能差异,TRUNCATE TABLE table_name 似乎更快。我找不到任何关于差异的信息。我发现的大部分内容都与截断和删除之间的区别有关。

TRUNCATE TABLE tblTRUNCATE tbl没有区别。这是同一条语句,两种形式的语法完全正确且同样相同。

之所以有两种写法,是因为有些人更喜欢一种形式。它可能会与 TRUNCATE() 函数混淆,因此添加 TABLE 可使语法更加清晰。

The TABLE keyword is optional. However, it is a good practice to use the TABLE keyword to distinguish between the TRUNCATE TABLE statement and the TRUNCATE() function. - http://www.mysqltutorial.org/mysql-truncate-table/