码迷,mamicode.com
首页 > Web开发 > 详细

thinkphp-查询方法

时间:2017-02-10 18:44:11      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:thinkphp-查询方法

1.where方法进行AND条件查询
Db::table(‘think_user‘)
    ->where(‘name‘,‘like‘,‘%thinkphp‘)
    ->where(‘status‘,1)
    ->find();
2.where方法多字段相同条件的AND查询
Db::table(‘think_user‘)
    ->where(‘name&title‘,‘like‘,‘%thinkphp‘)
    ->find();
3.whereOr方法进行OR查询
Db::table(‘think_user‘)
    ->where(‘name‘,‘like‘,‘%thinkphp‘)
    ->whereOr(‘title‘,‘like‘,‘%thinkphp‘)
    ->find();
4.whereOr方法多字段相同条件的OR查询
Db::table(‘think_user‘)
    ->where(‘name|title‘,‘like‘,‘%thinkphp‘)
    ->find();
5.where方法和whereOr方法在复杂的查询条件中配合使用
$result = Db::table(‘think_user‘)
    ->where(function ($query) {    
        $query->where(‘id‘, 1)->whereor(‘id‘, 2);
    })->whereOr(function ($query) {    
        $query->where(‘name‘, ‘like‘, ‘think‘)->whereOr(‘name‘, ‘like‘, ‘thinkphp‘);
})->select();


本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1896711

thinkphp-查询方法

标签:thinkphp-查询方法

原文地址:http://suyanzhu.blog.51cto.com/8050189/1896711

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