首页 > 代码库 > hive 删除表内容

hive 删除表内容

TRUNCATE:truncate用于删除所有的行,这个行为在hive元存储删除数据是不可逆的
delect:用于删除特定行条件,你可以从给定表中删除所有的行
insert overwrite table table_name select * from table_name where 1=0;

hive 删除表内容