TRUNCATE TABLE
適用於:Databricks SQL Databricks Runtime
從 table 或 partition中移除所有列。
table 不得為檢視、外部或暫時的 table。 若要一次截斷多個分割區,請在 中 partition_spec
指定分割區。 如果未指定 partition_spec
,則會移除 table中的所有分割區。
注意
Delta Lake 不支援 partition 子句 用於 TRUNCATE
。
如果 table 已被快取,命令將清除 table 及所有依賴且引用它的項目中的快取數據。 下次存取 table 或相依專案時,快取將會延遲填滿。
語法
TRUNCATE TABLE table_name [ PARTITION clause ]
Parameters
-
要截斷的名稱是 table。 名稱不得包含 時態規格或選項規格。 如果找不到 table,Azure Databricks 就會引發 TABLE_OR_VIEW_NOT_FOUND 錯誤。
-
partition的選擇性規格。 不支援 Delta Lake。
範例
-- Create table Student with partition
> CREATE TABLE Student (name STRING, rollno INT) PARTITIONED BY (age INT);
> SELECT * FROM Student;
name rollno age
---- ------ ---
ABC 1 10
DEF 2 10
XYZ 3 12
-- Remove all rows from the table in the specified partition
> TRUNCATE TABLE Student partition(age=10);
-- After truncate execution, records belonging to partition age=10 are removed
> SELECT * FROM Student;
name rollno age
---- ------ ---
XYZ 3 12
-- Remove all rows from the table from all partitions
> TRUNCATE TABLE Student;
> SELECT * FROM Student;
name rollno age
---- ------ ---