赞
踩
struct:结构体,是hive中的复杂数据类型;hive中复杂数据类型包括数组(array)、映射(map)和结构体(struct);
Create table complex(col1 ARRAY< INT >,
Col2 MAP<STRING, INT >,
Col3 STRUCT<a:STRING,b : INT ,c: DOUBLE >);
Select col1[0],col2[‘b’],col3.c from complex;
named_struct类型,主要用这个函数做字段拼接,并且每个字段都可以取别名;
select named_struct(
'"supplier_sku_id"',supplier_sku_id,
'"supplier_id"',t1.supplier_id,
'"prefee_rate"',prefee_rate,
'"order_rate"',order_rate,
'"goRate"',go_rate,
'"completeRate"',compliance_prefee_rate
) as detail
from table1
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。