内容简介:翻译自:https://stackoverflow.com/questions/3728010/create-a-delimitted-string-from-a-query-in-db2
我试图从iSeries(AS / 400)上的DB2中的查询结果创建一个分隔字符串.我在T-SQL中完成了这个,但是在这里找不到办法.
这是我在T-SQL中的代码.我正在寻找DB2中的equivelant.
DECLARE @a VARCHAR(1000) SELECT @a = COALESCE(@a + ', ' + [Description], [Description]) FROM AP.Checkbooks SELECT @a
如果我表中的描述如下所示:
Desc 1 Desc 2 Desc 3
然后它会返回:
Desc 1, Desc 2, Desc 3
基本上,您正在寻找DB2中的 MySQL 的GROUP_CONCAT聚合函数.根据 one thread I found
,您可以通过XMLAGG函数模仿此行为:
create table t1 (num int, color varchar(10)); insert into t1 values (1,'red'), (1,'black'), (2,'red'), (2,'yellow'), (2,'green'); select num, substr( xmlserialize( xmlagg( xmltext( concat( ', ', color ) ) ) as varchar( 1024 ) ), 3 ) from t1 group by num;
这会回来
1 red,black 2 red,yellow,green
(或者,如果我正确地阅读了东西)
翻译自:https://stackoverflow.com/questions/3728010/create-a-delimitted-string-from-a-query-in-db2
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- go基础库之使用分隔符连接字符串切片
- editcap: pcap文件的合并和分隔
- webpack4 SplitChunks实现代码分隔详解
- go基础库之解析以逗号分隔的数据
- 查找一个字符串中最长不含重复字符的子字符串,计算该最长子字符串的长度
- (三)C语言之字符串与字符串函数
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Spring in Action
Craig Walls / Manning Publications / 2011-6-29 / USD 49.99
Spring in Action, Third Edition has been completely revised to reflect the latest features, tools, practices Spring offers to java developers. It begins by introducing the core concepts of Spring and......一起来看看 《Spring in Action》 这本书的介绍吧!