odps查询内嵌数据
2017-06-03 本文已影响35人
Shaun_lan
问题描述:
我的odps数据记录中有个字段是json串,我想在SQL语句where中把json串的某个key作为条件进行查询?
解决:
select * from table_name where get_json_object(table_name.col_name,'$key') = 'value';
官方详细文档:
https://help.aliyun.com/document_detail/48973.html?spm=5176.doc48976.6.610.kTjX2j
http://pyodps.readthedocs.io/zh_CN/latest/api-def.html