Sql Server 字符串聚合函数
更新时间:2009年06月23日 18:52:38 作者:
Sql Server 有如下几种聚合函数SUM、AVG、COUNT、COUNT(*)、MAX 和 MIN,但是这些函数都只能聚合数值类型,无法聚合字符串。
如下表:AggregationTable
create table AggregationTable(Id int, [Name] varchar(10))
go
insert into AggregationTable
select 1,'赵' union all
select 2,'钱' union all
select 1,'孙' union all
select 1,'李' union all
select 2,'周'
go
2.创建自定义字符串聚合函数
Create FUNCTION AggregateString
(
@Id int
)
RETURNS varchar(1024)
AS
BEGIN
declare @Str varchar(1024)
set @Str = ''
select @Str = @Str + [Name] from AggregationTable
where [Id] = @Id
return @Str
END
GO
3.执行下面的语句,并查看结果
select dbo.AggregateString(Id),Id from AggregationTable
group by Id
Id | Name |
1 | 赵 |
2 | 钱 |
1 | 孙 |
1 | 李 |
2 | 周 |
如果想得到下图的聚合结果
Id | Name |
1 | 赵孙李 |
2 | 钱周 |
利用SUM、AVG、COUNT、COUNT(*)、MAX 和 MIN是无法做到的。因为这些都是对数值的聚合。不过我们可以通过自定义函数的方式来解决这个问题。
1.首先建立测试表,并插入测试数据:
复制代码 代码如下:
create table AggregationTable(Id int, [Name] varchar(10))
go
insert into AggregationTable
select 1,'赵' union all
select 2,'钱' union all
select 1,'孙' union all
select 1,'李' union all
select 2,'周'
go
2.创建自定义字符串聚合函数
复制代码 代码如下:
Create FUNCTION AggregateString
(
@Id int
)
RETURNS varchar(1024)
AS
BEGIN
declare @Str varchar(1024)
set @Str = ''
select @Str = @Str + [Name] from AggregationTable
where [Id] = @Id
return @Str
END
GO
3.执行下面的语句,并查看结果
复制代码 代码如下:
select dbo.AggregateString(Id),Id from AggregationTable
group by Id
结果为:
Id | Name |
1 | 赵孙李 |
2 | 钱周 |
相关文章
将ACCESS数据库迁移到SQLSERVER数据库两种方法(图文详解)
这篇文章介绍了ACCESS数据库迁移到SQLSERVER数据库两种方法,有需要的朋友可以参考一下2013-10-10SQLite3数据库的介绍和使用教程(面向业务编程-数据库)
这篇文章主要介绍了SQLite3数据库的介绍和使用(面向业务编程-数据库),本文从SQLite3的库的获取、工程管理、SQL语句介绍、C语言编程四个角度阐述了SQLite3数据库的实际应用,需要的朋友可以参考下2023-05-05SqlServer实现类似Oracle的before触发器示例
本节主要介绍了SqlServer如何实现类似Oracle的before触发器,需要的朋友可以参考下2014-08-08SQL Server跨服务器操作数据库的图文方法(LinkedServer)
这篇文章主要介绍了SQL Server跨服务器操作数据库的方法,通过链接服务器(LinkedServer)实现SQL Server远程链接MySql等数据库,需要的朋友可以参考下2022-10-10通过Windows批处理命令执行SQL Server数据库备份
这篇文章主要介绍了通过Windows批处理命令执行SQL Server数据库备份的相关资料,需要的朋友可以参考下2016-03-03
最新评论