o.type = 'FN':
选择对象类型为标量函数(Scalar Function)。
o.type = 'IF':
选择对象类型为内联表值函数(Inline Table-Valued Function)。
o.type = 'TF':
选择对象类型为多语句表值函数(Multi-Statement Table-Valued
搜索语句
SELECT o.name AS FunctionName, c.text AS FunctionDefinition
FROM sysobjects o
JOIN syscomments c ON o.id = c.id
WHERE (o.type = 'FN' OR o.type = 'IF' OR o.type = 'TF') -- 这将返回所有函数
AND c.text LIKE '%your_search_term%';
image.png
上图可见可以搜索很多,存储过程代码也能搜到
网友评论