This is the below Table1 data which I am getting back from this queryselect user_id, prod_and_ts.product_id as product_id, prod_and_ts.timestamps as timestamps from testingtable2 LATERAL VIEW explode(purchased_item) exploded_table as prod_and_ts
Output from the above query. USER_ID | PRODUCT_ID | TIMESTAMPS ------------+------------------+------------- 1015826235 220003038067 *1004941621* 1015826235 300003861266 1005268799 1015826235 140002997245 1061569397 1015826235 *210002448035* 1005542471
If you compare the `Table1` data with the below `Table2` data, then the `PRODUCT_ID` in the last line of Table1 data is not matching with the `ITEM_ID` in the last line in the below Table2 data and also same with `TIMESTAMPS` in the first line of `Table1` data is not matching with `CREATED_TIME` in the first line of `Table2` data. BUYER_ID | ITEM_ID | CREATED_TIME -------------+--------------------+------------------------ 1015826235 220003038067 *2001-11-03 19:40:21* 1015826235 300003861266 2001-11-08 18:19:59 1015826235 140002997245 2003-08-22 09:23:17 1015826235 *200002448035* 2001-11-11 22:21:11
So I need to show the result like this for the above example after JOINING Table1 with Table2- BUYER_ID | ITEM_ID | CREATED_TIME | PRODUCT_ID | TIMESTAMPS ------------+-------------------+-------------------------+-------------------+----------------- 1015826235 220003038067 *2001-11-03 19:40:21* 220003038067 *1004941621* 1015826235 *200002448035* 2001-11-11 22:21:11 *210002448035* 1005542471
Can anyone suggest me how to JOIN the Query that I wrote with Table2 data to get the actual result that I am looking for.