gpt4 book ai didi

sql - LISTAGG 内的 RTRIM?

转载 作者:行者123 更新时间:2023-12-02 09:07:00 24 4
gpt4 key购买 nike

美好的一天。我正在编写一个使用 LISTAGG 并返回结果的查询。这是我到目前为止的代码。

   select 
listagg(rtrim(shop_cde, 1), ', ') within group (order by shop_cde) col1,
business_cde
from mytable
group by business_cde

我希望这会返回结果,聚合它们,并从 shop_cde 的右侧修剪掉 1 个字符。然而,似乎没有发生修剪。 Shop_cde 仍然完整显示。有谁知道如何在 LISTAGG 函数中 TRIM ?

最佳答案

trim() 函数通常用于删除前导空格和尾随空格(尽管您也可以删除其他字符)。

如果您想丢弃最后一个字符,请使用substr():

select listagg(substr(shop_cde, 1, length(shop_cde) - 1), ', ') within group (order by shop_cde) col1,
business_cde
from mytable
group by business_cde

关于sql - LISTAGG 内的 RTRIM?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57116806/

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