get_json_object(string json_string, string path)
说明:
第一个参数填写json对象变量第二个参数使用$表示json变量标识,然后用 . 或 [] 读取对象或数组;如果输入的json字符串无效,那么返回NULL。每次只能返回一个数据项。data 为 test表中的字段,数据结构如下:
data = { "store": { "fruit":[{"weight":8,"type":"apple"}, {"weight":9,"type":"pear"}], "bicycle":{"price":19.95,"color":"red"} }, "email":"amy@only_for_json_udf_test.net", "owner":"amy" }1.get单层值
hive> select get_json_object(data, '$.owner') from test; 结果:amy2.get多层值.
hive> select get_json_object(data, '$.store.bicycle.price') from test; 结果:19.953.get数组值[]
hive> select get_json_object(data, '$.store.fruit[0]') from test; 结果:{"weight":8,"type":"apple"}explode 就是将hive一行中复杂的array或者map结构拆分成多行。
demo:
select ordernumber, get_json_object(concat('{',deviceId,'}'),'$.deviceInfo.deviceId') from table lateral view explode(split(substr(get_json_object(message,'$.data.YN031.results'),3,length(get_json_object(message,'$.data.YN031.results')) -4),'\\},\\{'))b1 as deviceId where ;
SoWhat1412 认证博客专家 签约作者 后端coder 微信搜索【SoWhat1412】,第一时间阅读原创干货文章。人之患、在好为人师、不实知、谨慎言。点点滴滴、皆是学问、看到了、学到了、便是收获、便是进步。