gpt4 book ai didi

postgresql - string_to_array 函数

转载 作者:行者123 更新时间:2023-11-29 13:52:15 31 4
gpt4 key购买 nike

我在 redshift case 语句中使用了 sting_to_array 函数。但是我得到一个错误,比如 -

[0A000] 错误:Redshift 表不支持指定的类型或函数(每个 INFO 消息一个)。

可能是什么问题?

下面是示例代码-

SELECT
CASE
WHEN upper(url) LIKE upper('%utm_source%')
THEN (string_to_array(url, '&'))[1]
END as utm_source,
FROM
TEMP.table_data a2;

基本上我的 url 是这种格式 -

utm_source=257509081c6f53&utm_medium=internet&utm_campaign=messenger-android&utm_term=search_keyword&utm_content=new_products

我的目标是只提取 utm_* 值

最佳答案

Redshift 不支持数组函数和运算符:http://docs.aws.amazon.com/redshift/latest/dg/c_unsupported-postgresql-functions.html

相反,请尝试使用 SPLIT_PART功能:

SELECT
CASE
WHEN upper(url) LIKE upper('%utm_source%')
THEN SPLIT_PART(url, '&', 1)
END as utm_source
FROM
TEMP.table_data a2;

注意:SPLIT_PART 函数从 1 开始计数。

关于postgresql - string_to_array 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38911307/

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