标签:位置 传统 color 一个 作用 container sele 字符串 sql
INSTR(STR,SUBSTR) 在一个字符串(STR)中搜索指定的字符(SUBSTR),返回发现指定的字符的位置(INDEX);
STR 被搜索的字符串 SUBS;TR 希望搜索的字符串
在字符串STR里面,字符串SUBSTR出现的第一个位置(INDEX),INDEX是从1开始计算,如果没有找到就直接返回0,没有返回负数的情况。
例如,查询字段name中带”军”的名字,传统的方法是:
select
name
from
用户表
where
name
like
`%军%‘;
select
name
from
用户表
where
instr(
‘name‘,‘军‘
);
select
name
from
用户表
where
instr(
‘name‘,‘
军‘)>0;
索引只对‘keyword%‘有效,对%开头的(‘%keyword‘,‘%keyword%‘)起不了作用,改成 instr() 后检索速度快了不少
标签:位置 传统 color 一个 作用 container sele 字符串 sql
原文地址:https://www.cnblogs.com/xiaoQ0725/p/8793691.html