使用下面的函数来进行模糊查询,如果出现的位置>0,表示包含该字符串。
查询效率比like要高。
如:
table.field like ‘%AAA%’ 可以改为 locate (‘AAA’ , table.field) > 0
注:locate(substr,str)
用explain查看结果,rows越少越好!
1、用like查询
2、用locate查询...
分类:
数据库 时间:
2015-01-09 20:58:12
阅读次数:
209
在oracle的开发和使用中,经常需要用到各种各样的函数,这一章归纳下简单的字符串、数学函数,以后需要用起来也方便点,也能让有缘的同学少走一点弯路。
--常用字符相关函数
1、substr
字符串截取
substr(字符串,截取开始位置,截取长度)
select substr('abcdef',1,3) from dual
截取开始位置,0和1都是表示截取的开始位置为第一个字符;
...
分类:
数据库 时间:
2015-01-09 14:21:08
阅读次数:
213
0) && substr($result, 10, 16) == substr(md5(substr($result, 26).$keyb), 0, 16)) { return substr($result, 26); } else { return ''; ...
分类:
Web程序 时间:
2015-01-07 18:23:27
阅读次数:
146
前面谈到任何对列的操作都可能导致全表扫描,例如:
select * from emp where substr(ename,1,2)=’SM’;
但是这种查询又经常使用,我们可以创建一个带有substr函数的基于函数的索引,
create index emp_ename_substr on eemp ( substr(ename,1,2) );
这样在执行上面的查询语句时,这个基于函数的索...
分类:
数据库 时间:
2015-01-07 09:21:30
阅读次数:
163
1、字符串截取substr(string,start_position,[length])例:select substr('Hello World', 1, 2) from dual; --返回结果为 'He' 注:从字符串第一个字符开始截取长度为2的字符串select substr('Hell.....
分类:
数据库 时间:
2015-01-06 13:33:48
阅读次数:
244
一、基于时间(as of timestamp)的flashback1、创建表create table flash_tab(id,vl) as select rownum,oname from ( select substr(object_name,1,1) oname from all_object...
分类:
其他好文 时间:
2015-01-06 00:34:04
阅读次数:
271
substr方法:text.substr(start[,length]);text:要提取子字符串的字符串或String对象。必选start:子字符串的起始位置。以0开始索引。必选length:返回字符串的个数。可选如length为0或负数,将返回空字符串。如没指定,则返回以start开始到结尾的子...
分类:
Web程序 时间:
2015-01-05 20:16:10
阅读次数:
158
Longest Valid ParenthesesGiven a string containing just the characters'('and')', find the length of the longest valid (well-formed) parentheses substr...
分类:
其他好文 时间:
2015-01-03 22:20:40
阅读次数:
131
用处: 用于判断身份证是否和性别相符DECODE(MOD(TO_NUMBER(DECODE(Length(certno),15,SUBSTR(certno,15,1),18,SUBSTR(certno,17,1))),2),1,1,0,2) GENDERGENDER = 1 男
分类:
其他好文 时间:
2015-01-01 18:31:43
阅读次数:
132
在php中字符替换函数有几个如有:str_replace、substr_replace、preg_replace、preg_split、str_split等函数,下面我来给大家总结介绍介绍。
一、str_replace(find,replace,string,count)
作用:str_replace() 函数使用一个字符串替换字符串中的另一些字符。
参数 描述
find 必需。规定要查...
分类:
Web程序 时间:
2014-12-31 16:16:33
阅读次数:
150