网站首页设计及运行效果免费搭建网站
转成
select customer_code,product_type
from temp.temp_xx
LATERAL VIEW explode(SPLIT(product_types,',')) table_tmp AS product_type
where customer_code ='K100515182'
转成
select customer_code,product_type
from temp.temp_xx
LATERAL VIEW explode(SPLIT(product_types,',')) table_tmp AS product_type
where customer_code ='K100515182'