TRUNCATE TABLE
Gäller för: Databricks SQL Databricks Runtime
Tar bort alla rader från en table eller partition(s).
table får inte vara en vy eller en extern eller tillfällig table. För att trunkera flera partitioner samtidigt anger du partitionerna i partition_spec
. Om ingen partition_spec
har angetts tar du bort alla partitioner i table.
Kommentar
Delta Lake stöder inte partition-satser för TRUNCATE
.
Om table cachelagras rensar kommandot cachelagrade data för table och alla dess beroenden som refererar till den. Cachen kommer att fyllas latent nästa gång table eller dess beroenden nås.
Syntax
TRUNCATE TABLE table_name [ PARTITION clause ]
Parameters
-
Namnet på table för att trunkera. Namnet får inte innehålla en temporal specifikation eller alternativspecifikation. Om table inte kan hittas genererar Azure Databricks ett TABLE_OR_VIEW_NOT_FOUND fel.
-
Valfri specifikation av en partition. Stöds inte för Delta Lake.
Exempel
-- 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
---- ------ ---