发布网友 发布时间:2022-04-07 15:32
共5个回答
热心网友 时间:2022-04-07 17:01
Sql Server自定义聚合函数详细步骤
开始->
输出->
首先用VS2008/VS2005建立一个SQL Server项目,右键解决方案添加新项
点击“确定”按钮后,SQL Server项目会要求连接一个数据库,我们可以选择一个数据库
然后在工程中加入一个聚合类(joinstr.cs),如图
joinstr.cs中的最终代码如下:
using System;在编写完上述代码后,可以使用Visual Studio来部署(右向工程,在弹出菜单上选“部署”即可)。
在执行上面的SQL语句之前,需要将SQL Server2005的clr功能打开
现在可以使用joinstr来聚合字符串了。
select [t_code_role].[role_mc] as '角色',dbo.JoinStr([t_code_right].[right_mc]+',') as '权限' from [t_data_roleright],[t_code_right],[t_code_role] where [t_data_roleright].[role_bm]=[t_code_role].[role_bm] and [t_data_roleright].[right_bm]=[t_code_right].[right_bm] group by [t_code_role].[role_mc]
热心网友 时间:2022-04-07 18:19
有两个写法:
select * from tblDept
where id in(select DeptID from tblSalary group by DeptID having
count(case when Salary>3000 then 1 else null end)*1.0/count(*)>0.5)
或
select * from tblDept
where id in(select DeptID from tblSalary group by DeptID having
sum(case when Salary>3000 then 1 else 0 end)*1.0/count(*)>0.5)
热心网友 时间:2022-04-07 19:54
我记得sql server 有function ,百度一下如何创建function。function与聚合函数是一回事。追问那个创建的是标量行数追答function是自定义函数。
热心网友 时间:2022-04-07 21:45
三楼回答的很好,标记一下,项目中要用到热心网友 时间:2022-04-07 23:53
sql语句能实现吗?只知道sqlclr能实现