gpt4 book ai didi

hive - Hive 中的数组字面量

转载 作者:行者123 更新时间:2023-12-03 16:54:23 31 4
gpt4 key购买 nike

如何在 Hive 中写出数组文字?

SELECT PERCENTILE(my_column, [0.5, 0.25, 0.50, 0.75, 0.95]) AS quantiles
FROM my_table

返回错误
FAILED: ParseException line xx:xx cannot recognize input near '[' '0.5' ',' in select expression

最佳答案

尝试使用 array而不是 []

SELECT PERCENTILE(my_column, array(0.5, 0.25, 0.50, 0.75, 0.95)) AS quantiles
FROM my_table

关于hive - Hive 中的数组字面量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25840856/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com