在做項目的過程中,需要用到like關鍵字來組合查詢條件,下面作者將在thinkphp中使用到的 like 查詢做一下分享。
這裡主要通過舉例來說明用法:
$userForm=M('user');
$where['name']=array('like','phpernote%');$userForm->where($where)->select();
這裡的like查詢即為:name like 'phpernote%'
$where['name']=array('like',array('%phpernote%','%.com'),'OR');
這裡的like查詢即為:name like '%phpernote%' or name like '%.com'
$where['name']=array(array('like','%a%'),array('like','%b%'),array('like','%c%'),'phpernote','or');
這裡的like查詢即為:(`name` LIKE '%a%') OR (`name` LIKE '%b%') OR (`name` LIKE '%c%') OR (`name` = 'phpernote')
$where['_string']='(name like "%phpernote%") OR (title like "%phpernote")';
這裡的like查詢即為:name like '%phpernote%' or title like '%phpernote'
您可能感興趣的文章
- ThinkPHP中的查詢技巧總結
- thinkphp 的 Action 控制器中的系統常量總結
- thinkphp 如何去除url中的index.php
- thinkphp模板中判斷volist迴圈的最後一條記錄
- thinkphp列印最後一條sql語句
- Thinkphp 模板中常用的系統變數總結
- 使用ThinkPHP必須掌握的調試方法
- Thinkphp 內建函式 ADSLCFUI 快捷方法全解析
http://www.bkjia.com/PHPjc/764119.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/764119.htmlTechArticle在做項目的過程中,需要用到like關鍵字來組合查詢條件,下面作者將在thinkphp中使用到的 like 查詢做一下分享。 這裡主要通過舉例來說明用...