如题,使用如下 SQL :
SELECT
`deviceId`,
`frequent_ip`,
first_value(`frequent_ip`, 1) over(
partition by `deviceId`
order by xxx ASC
) as frequent_ip_ignore_null
FROM
xxxx
where
xxxx
deviceId 字段类型 是 VARCHAR
frequent_ip 字段类型是 ARRAY<VARCHAR(1024)>
将上述函数中的 1 换成 true 也没生效。