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

记住该记住的,忘记该忘记的,改变能改变的,理解不能改变的。生命不要求我们成为最好的,只要求我们做最大努力。
把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 '%××%')

以上就是查询存储过程中特定字符的方法。我不尊重任何人,包括乔丹,因为我要胜利。早安!更多关于查询存储过程中特定字符的方法请关注haodaima.com其它相关文章!

标签: 过程中