SQL查找存储过程,列名,表,方法,字符串中匹配的字符串

Posted aaron-lee

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL查找存储过程,列名,表,方法,字符串中匹配的字符串相关的知识,希望对你有一定的参考价值。

--select string using in procedure
select b.name, a.text from syscomments a left join sysobjects b on b.id=a.id
where b.xtype=‘P‘ and a.text like ‘%USP_FOUNDATIONUPDATE%‘


--select columns name
select b.name as Table1, a.name as Columns1,a.type  from syscolumns a left join sysobjects b on b.id=a.id
where b.xtype=‘u‘ and a.name like ‘%season%‘

 

--select table name
select name from sysobjects where xtype=‘u‘ and name like ‘%habit%‘


--select string using in function
select b.name, a.text from syscomments a left join sysobjects b on b.id=a.id
where b.xtype=‘fn‘ and a.text like ‘%Fn_GetIR%‘


--select string using in view
select b.name, a.text from syscomments a left join sysobjects b on b.id=a.id
where b.xtype=‘V‘ and a.text like ‘%vw_species%‘

	

  

以上是关于SQL查找存储过程,列名,表,方法,字符串中匹配的字符串的主要内容,如果未能解决你的问题,请参考以下文章

Sql语句大全

SQL Server日期时间函数

Mybatis动态SQL

mysql基础sql语法联系

防止SQL注入

MYSQL从前到后