HIVE- INSERT 方法使用

(1) INSERT INTO
INSERT INTO table
VALUES
('aaa' , 111),
('bbb' , 222);

(2) insert overwrite 

insert overwrite table table(partition = '202301')
select

fields

from table_source;

 

posted @ 2022-02-17 17:34  冉溪  阅读(472)  评论(0编辑  收藏  举报