Count SQL Server User Created Functions based on Type(根据类型计算 SQL Server 用户创建的函数)
问题描述
我可以使用
SELECT COUNT(*)
FROM information_schema.routines
WHERE routine_type = 'FUNCTION'
但这会返回所有函数,无论是标量值函数、内联函数还是表值函数
But this returns all functions whether it be a scalar-valued function, an inline function or a table-valued function
有没有办法获得特定于函数类型的计数?例如.只计算内联函数?
Is there a way to obtain a count specific to the type of function? E.g. count inline functions only?
推荐答案
您所追求的这种区别是特定于 SQL Server 的,可能没有包含在 information_schema
标准中.您需要查看系统视图:
This distinction you are after is specific to SQL Server and probably not covered by the information_schema
standard. You need to look at system views for that:
select o.type_desc, count(*)
from sys.objects o
where o.type in ('AF', 'FN', 'FS', 'FT', 'IF', 'TF')
group by o.type_desc
order by o.type_desc;
根据您使用的 SQL Server 版本,可用对象类型列表可能会有所不同.请参阅文档 对于您的版本.
Depending on the version of SQL Server you are using, the list of available object types might differ. Consult with the documentation for your version regarding that.
这篇关于根据类型计算 SQL Server 用户创建的函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:根据类型计算 SQL Server 用户创建的函数


基础教程推荐
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01
- MySQL 5.7参照时间戳生成日期列 2022-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
- 带更新的 sqlite CTE 2022-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
- 从字符串 TSQL 中获取数字 2021-01-01
- 带有WHERE子句的LAG()函数 2022-01-01