我是新来的蜂巢。我创建了 2 个外部配置单元表,并使用 sqoop 从 oracle 导入数据。我还创建了一个新的外部表,其中包含External table 1 and External table 2
以下两个数据
create external table transaction_usa_canada
(
tran_id int,
acct_id int,
tran_date string,
amount double,
description string,
branch_code string,
tran_state string,
tran_city string,
speendby string,
tran_zip int,
source_table string
)
row format delimited
stored as textfile
location '/user/gds/bank_ds/tran_usa_canada';
现在,我不知道如何将 2 个外部表的数据合并到上面的外部表中。
请帮忙。