查询存储过程中特定字符的方法
时间:2021-01-22 12:24:43|栏目:MsSql|点击: 次
把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 '%××%')
复制代码 代码如下:
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 '%××%')
上一篇:浅谈tempdb在SqlServer系统中的重要作用
栏 目:MsSql
下一篇:t-sql清空表数据的两种方式示例(truncate and delete)
本文标题:查询存储过程中特定字符的方法
本文地址:http://www.codeinn.net/misctech/49035.html