create table my_table(id int, value int);insert overwrite table my_tableselect a.id as id, b.value as value from ( select count(*) from my_table) tlateral view explode(array(1,2,3)) a as idlateral view explode(array(2,3,5)) b as value;

create table my_table(id int, value int);insert overwrite table my_tableselect a.id as id, b.value as value from ( select count(*) from my_table) tlateral view explode(array(1,2,3)) a as idlateral view explode(array(2,3,5)) b as value;