insertinto test.t1 selectdate'2024-02-07'as dt, 'zs'as name ;
-- alter table test.t1 add partition if not exists p20240131 values[('2024-01-31'),('2024-02-01')); -- TRUNCATE TABLE test.t1 PARTITION(p20240207); -- show partitions FROM test.t1; select*from test.t1 where dt ='2024-02-06';