gpt4 book ai didi

mysql - MySQL 中的聚合函数 - 列表(如 Oracle 中的 LISTAGG)

转载 作者:IT老高 更新时间:2023-10-28 23:46:43 36 4
gpt4 key购买 nike

我需要返回字符串列表的函数。

我的表中有这样的数据:

Id    MyString
------------------------
1 First
2 Second
3 Third
4 Fourth

我需要这样的函数(类似这样的东西在 oracle 中有效):

select LISTAGG(MyString, ', ') as myList where id < 4

返回的是这样的:

myList
------------------------
First, Second, Third

有什么想法吗?

最佳答案

您正在寻找 GROUP_CONCAT()

试试这个:

select group_concat(MyString separator ', ') as myList from table
where id < 4

当然,您可以对结果分组

关于mysql - MySQL 中的聚合函数 - 列表(如 Oracle 中的 LISTAGG),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9456380/

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