sqlite 中的字符串聚合
有人知道 sqlite 中的字符串聚合是否可能吗? 如果我有一个包含 5 行/数据的动物列,我如何将它们组合起来,以便输出位于一个字段中 '狗','猫','大鼠','小鼠','老鼠'作为动物
谢谢
Anyone knows if String Aggregation in sqlite is possible?
If i have an animal column with 5 rows/datas, how can i combine them so that the output would be in one field
'dog','cat','rat','mice','mouse' as animals
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您正在寻找类似以下内容的内容:
这将返回类似以下内容的内容:
如果您不想使用逗号作为分隔符,则可以添加自己的分隔符作为第二个参数:
它将返回:
You're looking for something like the following:
This will return something like the following:
If you don't want to use a comma as the separator, you can add your own separator as a second parameter:
which will return:
我认为这会很有用:
group_concat() 函数返回一个字符串,它是 X 的所有非 NULL 值的串联。如果参数 Y 存在,则它将用作 X 实例之间的分隔符如果省略 Y,则使用逗号(“,”)作为分隔符。连接元素的顺序是任意的。
I think this will be useful:
The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. A comma (",") is used as the separator if Y is omitted. The order of the concatenated elements is arbitrary.