sql server多行数据拼接的实例方法

前端之家收集整理的这篇文章主要介绍了sql server多行数据拼接的实例方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1.表结构
idtypeproductCode
1铅笔0001
2铅笔0002
3铅笔0003
4钢笔0004
5钢笔0005
6钢笔0004
7圆珠笔0007
8圆珠笔0008
9圆珠笔0007
2.自定义函数fun
<div class="codetitle"><a style="CURSOR: pointer" data="18552" class="copybut" id="copybut18552" onclick="doCopy('code18552')"> 代码如下:

<div class="codebody" id="code18552">
GO
/** Object: UserDefinedFunction [dbo].[fun] Script Date: 11/22/2011 16:09:45 **/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
Create function [dbo].[fun](@type nvarchar(10))
returns nvarchar(200)
as
begin
declare @re nvarchar(200)
declare @code nvarchar(200)
set @re=''
set @code=''
select @re=@re+productCode+',' from T where type=@type group by productCode
select @re=left(@re,len(@re)-1)
return @re
end

3.查询语句
select type,dbo.fun(type) from (select distinct type from T) A
结果:
钢笔 0004,0005
铅笔 0001,0002,0003
圆珠笔 0007,0008

原文链接:https://www.f2er.com/mssql/63508.html

猜你在找的MsSQL相关文章