首页 > 技术文章 > hive基本操作

ggzone 2016-02-20 11:15 原文

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;

 

推荐阅读