我想用 TEMPORARY 中间查询结果的表。有没有可能直接用临时的 INSERT OVERWRITE TEMPORARY TABLE 命令?我应该用吗 CREATE TEMPORARY TABLE TABLENAME AS SELECT ..... 或者 INSERT OVERWRITE TEMPORARY TABLE ?
TEMPORARY
INSERT OVERWRITE TEMPORARY TABLE
CREATE TEMPORARY TABLE TABLENAME AS SELECT .....
guicsvcw1#
您可以这样做:创建临时表temp2作为select*fromtablename;下面是完整的例子。http://dwgeek.com/apache-hive-temporary-tables-examples.html/
1条答案
按热度按时间guicsvcw1#
您可以这样做:创建临时表temp2作为select*fromtablename;下面是完整的例子。http://dwgeek.com/apache-hive-temporary-tables-examples.html/