hive select into
时间: 2023-11-09 17:02:21 浏览: 70
Programming Hive
4星 · 用户满意度95%
hive中的select into语法是不存在的,正确的语法应该是insert into select。insert into select语法可以将一个表中的数据插入到另一个表中,或者将查询结果插入到一个新表中。
例如,将一个表中的数据插入到另一个表中:
```
insert into table table2 select * from table1;
```
将查询结果插入到一个新表中:
```
create table new_table as select * from old_table;
```
阅读全文