SQLServer任意列之间的聚合
sql的max之类的聚合函数只能针对同一列的n行运算,如果对n列运算,一般都用case 语句来判断,如果列少还比较容易写,列多了就麻烦了。这里介绍一个通过xml合并列并转为行集后直接用聚合函数求值的方法,测试用例和代码如下 ? ?
/* 测试名称:利用 XML 求任意列之间的聚合 测试功能:对一张表的列数据做 min 、 max 、 sum 和 avg 运算 运行原理:字段合并为 xml 后做 xquery 查询转为行集后聚合 作者: jinjazz (近身剪) */ -- 建立测试环境 declare @t table ( id smallint , a smallint , b smallint , c smallint , d smallint , e smallint , f smallint ) ? insert into @t select 1, 1, 2, 3, 4, 6, 7 union all select 2, 34, 45, 56, 54, 9, 6 ? -- 测试语句 select ? a.*, c.* from @t a outer apply( select doc=( select * from @t as doc where id= a. id? for xml path ( '' ), type ? ) ) b outer apply( select min ( r) as minValue, max ( r) as maxValue, sum ( r) as sumValue, avg ( r) as avgValue ? from ( ??? select cast ( cast ( d. n. query( 'text()' ) as varchar ( max )) as int ) as r ?????? from doc. nodes( '/a,b,c,d,e,f' ) D( n)) tt ) c ??? ? /* 测试结果 ? id???? a????? b????? c????? d????? e????? f????? minValue??? maxValue??? sumValue??? avgValue ------ ------ ------ ------ ------ ------ ------ ----------- ----------- ----------- ----------- 1????? 1????? 2????? 3????? 4????? 6????? 7????? 1?????????? 7?????????? 23????????? 3 2????? 34???? 45???? 56???? 54???? 9????? 6????? 6?????????? 56???????? ? 204???????? 34 */ (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
- SQLSERVERS 数据整理方法
- 如果数据库表更新/插入,如何让Windows C#控件自动更新?
- [推荐] (SqlServer)批量清理指定数据库中所有数据
- wcf – 调用Roles.GetRolesForUser时的SqlRoleProvider:Nu
- sqlserver中nolock于readpast
- 数据库 – 数据库全真空,集群,分析 – 按顺序排列?
- CentOS 安装 Mongodb详解(在线和离线)
- Cont()与Where().Count()有时性能差别如此之大!
- SQL Server误区30日谈 第5天 AWE在64位SQL SERVER中必须开启
- Error creating bean with name 'transactionManager&a