查询存储过程中特定字符的方法
程序员文章站
2023-12-05 08:10:58
把xx替换成具体字符,如“深圳”,sql语句如下:复制代码 代码如下: select * from user_source t where instr(lower(t.te...
把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 '%××%')
上一篇: sql将时间类型转换为字符串类型汇总
下一篇: SQL排除重复结果只取字段最大值分享