S02030
错误代码
S02030
报错信息
Function toArray cannot be used with PIVOT BY. RefId:S02030
错误原因
在 pivot by 查询中,select 子句不支持
toArray
函数。如以下场景中,select
子句使用了toArray
函数,出现报错。
n = 10000
id = take(1..10, n)
value = take(1..10, n)
t = table(id, value)
select toArray(id) from t pivot by id, value // throw exception
解决方案
进行 pivot by 查询时,确保 select 子句中没有使用 toArray 函数。