SQL FunctionsArray FunctionsARRAY_UNIQUEOn this pageARRAY_UNIQUECounts unique elements in the array (except NULL). Syntax ARRAY_UNIQUE( <array> ) Examples SELECT ARRAY_UNIQUE([1, 2, 3, 3, 4]);┌───────────────────────────────┐│ array_unique([1, 2, 3, 3, 4]) │├───────────────────────────────┤│ 4 │└───────────────────────────────┘