json_array_length()
是一个系统函数,用于返回顶级JSON
数组中的元素数量。
json_array_length()
在PostgreSQL 9.3中添加。
示例
json_array_length()
的基本用法示例
postgres=# SELECT json_array_length('[{"foo":"bar"}, 2, 3]'); json_array_length ------------------- 3 (1 row)
参考文献
- PostgreSQL文档: JSON处理函数