龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > 数据库类 > Sql Server开发 >

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

时间:2014-05-17 15:14来源:网络整理 作者:网络 点击:
分享到:
这篇文章介绍了查询存储过程中特定字符的方法,有需要的朋友可以参考一下
把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 '%××%')
精彩图集

赞助商链接