日期:2014-05-18  浏览次数:20566 次

求搜索SQL数据库里,函数中含有某一字符的函数
求搜索SQL数据库里,函数中含有某一字符的 所有函数 的 语句

------解决方案--------------------
SQL code
select * from sysobjects where xtype in ('P','TF','IF','FN') order by [Name] 

exec sp_helptext 'functionName'

------解决方案--------------------
探讨
环境SQL2000