欢迎来到福编程网,本站提供各种互联网专业知识!
您的位置:网站首页 > 数据库 > MsSql

查询存储过程中特定字符的方法

发布时间:2013-09-25 作者: 来源:转载
这篇文章介绍了查询存储过程中特定字符的方法,有需要的朋友可以参考一下
把xx替换成具体字符,如“深圳”,sql语句如下:
复制代码 代码如下:
select * from user_source t where instr(lower(t.text),'xx')>0;
select * from all_source t where t.owner<>'SYS' and instr(t.text,'××')>0;

如果是sql server数据库,可以使用如下语句:
复制代码 代码如下:
select * from sysobjects where id in(
select id from syscomments where text like '%××%')

相关推荐