集合函数
函数说明
集合函数 |
函数说明 |
---|---|
CARDINALITY(array) |
返回数组中元素个数 |
array ‘[’ integer ‘]’ |
返回数组索引为integer的元素。索引从1开始 |
ELEMENT(array) |
返回数组中的唯一元素。 若数组为空,则返回null 若数组中元素个数大于1,则抛出异常 |
CARDINALITY(map) |
返回map中键值对的条数 |
map ‘[’ key ‘]’ |
返回map中key所对应的值 |