This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TEMP FUNCTION GetMainStringValue(arr ARRAY<STRING>) RETURNS STRING AS ( | |
ARRAY( | |
SELECT list FROM ( | |
SELECT list, | |
count(*) count, | |
FROM UNNEST(arr) list | |
GROUP BY list | |
ORDER BY count DESC | |
) | |
)[SAFE_OFFSET(0)] |