hive中的语句有两种:
insert into table cite select * from cite;
这个的意思就是将cite表中的数据复制一份,然后插入到原表中去,而
insert overwrite table cite select * from tt;
这个的意思就是会用tt表查出来的数据覆盖掉cite表格中已经存在的数据
hive中的语句有两种:
insert into table cite select * from cite;
这个的意思就是将cite表中的数据复制一份,然后插入到原表中去,而
insert overwrite table cite select * from tt;
这个的意思就是会用tt表查出来的数据覆盖掉cite表格中已经存在的数据
本文标题:Hive中的insert into语句
本文链接:https://www.haomeiwen.com/subject/ickjtftx.html
网友评论