查询构造器 没有找到类似于 select *** where a=x and b=y的语句

我想通过查询构器编写
用户名等于A,密码等于B的语句,但没有找到相关的and语句

只有orWhere 语法,没有andWhere语法
$users = DB::table('users')
->where('votes', '>', 100)
->orWhere('name', 'John')
->get();

有谁知道,非常感谢
已邀请:

FiveSay - 成武

赞同来自: mysteo 00幽靈00

直接这样写就可以了:
$users = DB::table('users')
    ->where('votes', '>', 100)
    ->where('name', 'John')
    ->get();

00幽靈00 - 略知一二,不求甚解

赞同来自: mysteo FiveSay

Tip: something magic like this:
$users = DB::table('users')
->where('name', 'John')
->get();

can be like this:
$users = DB::table('users')
->whereName('John')
->get();
匿名用户

匿名用户

赞同来自:

不好意思
刚好测试出来了
用数组的方法

$user =DB::table('db_user')->select('username')->where(array('username'=>$username,'password'=>md5($password)))->get();

要回复问题请先登录注册