码迷,mamicode.com
首页 > 数据库 > 详细

MySQL比like语句更高效的写法locate position instr find_in_se

时间:2015-10-26 20:58:00      阅读:363      评论:0      收藏:0      [点我收藏+]

标签:

SELECT `column` from `table` where locate(‘keyword‘, `condition`)>0; // LOCATE(substr,str,pos);locate 多一个起始位置的参数
SELECT `column` from `table` where position(‘keyword‘ IN `condition`);
SELECT `column` from `table` where instr(`condition`, ‘keyword‘)>0;
SELECT `column` from `table` where find_in_set(‘keyword‘, `condition`);
SELECT * FROM test WHERE pnum REGEXP ‘(3|9)‘;// 正则查找 或



MySQL比like语句更高效的写法locate position instr find_in_se

标签:

原文地址:http://my.oschina.net/liufeng815/blog/522272

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!