更新时间:2022-12-07 GMT+08:00

清空数据

功能描述

清除表的数据。

语法格式

1
TRUNCATE TABLE tablename [PARTITION (partcol1=val1, partcol2=val2 ...)];

关键字

表1 参数

参数

描述

tablename

需要执行Truncate命令的表的名称。

partcol1

需要删除的表的分区名称。

注意事项

只支持清除表的数据。

示例

1
truncate table test PARTITION (class = 'test');