Привет, у меня есть две таблицы, как показано ниже.
create table analytics_cem_db.AA
(msisdn string,
first_latch int,
last_latch_cell int,
mo_ab_release int,
mo_nml_release int,
time_key int);
и
create table analytics_cem_db.BB
(msisdn string,
first_latch int,
last_latch_cell int,
mt_ab_release int,
mt_nml_release int,
time_key int);
Мне нужно объединить эти таблицы, чтобы получить схему ниже. AA & CC имеют одинаковые и не похожие значения msisdn
create table analytics_cem_db.CC
(msisdn string,
first_latch int,
last_latch_cell int,
mo_ab_release int,
mo_nml_release int,
mt_ab_release int,
mt_nml_release int,
time_key int);