标签: hive
我想将一个配置单元表的所有行插入另一个配置单元表
insert into table <table_name> as select * from <table_bkp>
我在表中有很多行,但它只插入一行 请为其建议解决方案
我正在使用hive 1.2.1版本
答案 0 :(得分:3)
在您的查询中,删除“as”并按如下方式编写查询
insert into table <table_name> select * from <table_bkp>