SQL 函数数组函数ARRAY_UNIQUE本页总览ARRAY_UNIQUE计算数组中的唯一元素数量(NULL 除外)。 语法 ARRAY_UNIQUE( <array> ) 示例 SELECT ARRAY_UNIQUE([1, 2, 3, 3, 4]);┌───────────────────────────────┐│ array_unique([1, 2, 3, 3, 4]) │├───────────────────────────────┤│ 4 │└───────────────────────────────┘