- Apache Presto 教程
- Apache Presto - 主页
- Apache Presto - 概览
- Apache Presto - 架构
- Apache Presto - 安装
- Apache Presto - 配置
- Apache Presto - 管理
- Apache Presto - SQL 操作
- Apache Presto - SQL 函数
- Apache Presto - MySQL 连接器
- Apache Presto - JMX 连接器
- Apache Presto - HIVE 连接器
- Apache Presto - KAFKA 连接器
- Apache Presto - JDBC 接口
- 自定义函数应用程序
- Apache Presto 有用资源
- Apache Presto - 快速指南
- Apache Presto - 有用资源
- Apache Presto - 讨论
json_array_get(json_array, index)
查询 1
presto:default> SELECT json_array_get('[11, 12, 13]', 0) as JSON;
结果
JSON ------ 11
查询 2
presto:default> SELECT json_array_get('[11, 12, 13]', -1) as JSON;
结果
JSON ------ 13
查询 3
presto:default> SELECT json_array_get('[11, 12, 13]', 5) as JSON;
结果
JSON ------ NULL
apache_presto_sql_functions.htm
广告