我在集群上存储了一个配置单元表。我想通过添加一个新列来修改它,并将旧列的数据与从另一个表中添加的新列的数据合并。有没有不重新创建表的方法?
旧模式如下所示:
create external table XXX
(item_id bigint,
start_dt string,
end_dt string,
title string,
subtitle string,
description string)
row format delimited fields terminated by '\t' lines terminated by '\n'
stored as textfile
location '/user/me/XXX';
1条答案
按热度按时间qlfbtfca1#
你应该可以用下面的语法来做。