Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

lateral-view.txt 214B

1234567
  1. SELECT
  2. master_child.col1 AS master_id,
  3. child_table.child_id
  4. FROM VALUES
  5. ( 1 , ARRAY(1,2,3)),
  6. (2, ARRAY(4,5,6)) AS master_child
  7. LATERAL VIEW EXPLODE(master_child.col2) child_table AS child_id;