在Beeline中,我使用"create table new_table_name as select * from exists_name“创建一个新表,该表是成功创建的,但是没有data.When --我使用相同的"select * from exists_name”来创建临时表,临时表具有数据。Beeline版本是Beeline version 3.1.0.3.1.5.0-152 by Apache Hive
发布于 2020-08-03 07:41:33
我查看了有关Create Table As Select (CTAS)的蜂窝官方文档,CTAS有以下限制:
在Beeline中,当我使用create table new_table_name as select * from exists_name创建一个新表时,它总是创建一个外部表,也许是因为这个原因
https://stackoverflow.com/questions/63212342
复制相似问题