【发布时间】:2020-10-19 10:59:19
【问题描述】:
是否可以做一个
create table <mytable> as select <query statement>
使用
row format delimited fields terminated by '|';
或者做一个
create table <mytable> like <other_table> row format delimited fields terminated by '|';
语言手册似乎没有表明......但我过去已经做到了这一点。
【问题讨论】:
标签: hive sql-like create-table