sqlserver 怎么将查询出来的某列值相同的记录的另一列的值拼起来 求sql 语句怎么写
发布网友
发布时间:2022-05-01 03:28
我来回答
共3个回答
懂视网
时间:2022-05-01 07:49
--查询表中某列相同值的最近记录
2 SELECT * FROM TbName a
3 WHERE NOT EXISTS
4 (
5 SELECT 1 FROM TbName WHERE ColumnName=a.ColumnName and CreateTime>a.CreateTime
6 )
SqlServer查询表中某列相同值的最近记录
标签:
热心网友
时间:2022-05-01 04:57
我有一个方法可以实现。但是是用两个SQL语句,来两次循环就可以解决。具体思想给你说一下,你自己搞定吧。
select distinct(b) from tab 查找出不同的b中的字段,然后循环
select a from tab where b="上面那个循环的数值b" 然后循环
就可以解决这个问题了。思想是这样,最好自己亲手做出来。
热心网友
时间:2022-05-01 06:15
不用那么麻烦,看我的:
(1) select b,b+'('+stuff((select ','+a from tab t2 where t2.b=t1.b for xml path('')),1,1,'')+')' as result from tab t1 group by b
(2) select b,'('+stuff((select ','+a from tab t2 where t2.b=t1.b for xml path('')),1,1,'')+')' as result from tab t1 group by b
(3) select b+'('+stuff((select ','+a from tab t2 where t2.b=t1.b for xml path('')),1,1,'')+')' as result from tab t1 group by b
看哪个你要的。
至于为什么可以这样,请百度T-SQL的for xml path。