Lateral View

    语法:

    目前支持的表函数:

    1. explode_json_array

    table 中的数据会和各个 Lateral View 产生的结果集做笛卡尔积后返回上层。

    1. select k1, e1 from tbl1
    1. lateral view explode_json_array_int("[1,2,3]") tmp1 as e1
    2. lateral view explode_bitmap(bitmap_from_string("4,5,6")) tmp2 as e2;