SelectDB Cloud
SQL 手册
SQL 函数
数组函数
ARRAY_POPFRONT

array_popfront

array_popfront

description

Syntax

ARRAY<T> array_popfront(ARRAY<T> arr)

返回移除第一个元素后的数组,如果输入参数为 NULL,则返回 NULL

example

mysql> select array_popfront(['test', NULL, 'value']);
+-----------------------------------------------------+
| array_popfront(ARRAY('test', NULL, 'value'))        |
+-----------------------------------------------------+
| [NULL, value]                                       |
+-----------------------------------------------------+

keywords

ARRAY,POPFRONT,ARRAY_POPFRONT

© 2023 北京飞轮数据科技有限公司 京ICP备2022004029号 | Apache、Apache Doris 以及相关开源项目名称均为 Apache 基金会商标