json_array_get(json_array text, index int4)
现在让我们使用以下查询检查 json_array_get(json_array text, index int4) 函数。
查询
default> select json_array_get('[10, 20, 30]', 2) as array;
上述查询将生成以下结果。
array ------------------------------- 30
查询将指定索引处的元素返回到 JSON 数组中。 这里,2个索引有20个数组元素。
apache_tajo_json_functions.html