json_extract_path_text()

现在让我们使用以下查询检查 json_extract_path_text(json text, json_path text) 函数。

查询

default> select json_extract_path_text('{"tutorial" : 
   {"key" : "tajo"}}','$.tutorial.key') as path;   

上述查询将生成以下结果。

path 
------------------------------- 
tajo

查询根据 JSON 路径从 JSON 字符串中提取 JSON 字符串"tutorial"。

apache_tajo_json_functions.html