hive基本操作

hive级联删除数据库和表
drop database t1 cascade;

hive创建临时表和插入
create table t1 as select * from achi;
insert into table t1 select * from achi;
insert overwrite table t1 select * from achi;

原文地址:https://www.cnblogs.com/ggzone/p/7512894.html