前端之家收集整理的这篇文章主要介绍了
sqlite中的字符串聚合,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
任何人都知道
sqlite中的String Aggregation是否可行?
如果我有一个5行/数据的动物列,我如何组合它们以使
输出在一个字段中
‘dog’,’cat’,’rat’,’mice’,’mouse’as animals
谢谢
您正在寻找以下
内容:
select group_concat(animal) from animals;
这将返回如下内容:
dog,cat,rat,mice,mouse
如果您不想使用逗号作为分隔符,则可以添加自己的分隔符作为第二个参数:
select group_concat(animal,'_') from animals;
将返回:
dog_cat_rat_mice_mouse
原文链接:https://www.f2er.com/sqlite/453023.html