首页 > 数据库技术 > 详细

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

时间:2016-01-29 23:38:10      阅读:138      评论:0      收藏:0      [点我收藏+]
把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 ‘%××%‘)

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

原文:http://www.jb51.net/article/41673.htm

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!