查询构造器 没有找到类似于 select *** where a=x and b=y的语句
我想通过查询构器编写
用户名等于A,密码等于B的语句,但没有找到相关的and语句
只有orWhere 语法,没有andWhere语法
$users = DB::table('users')
->where('votes', '>', 100)
->orWhere('name', 'John')
->get();
有谁知道,非常感谢
用户名等于A,密码等于B的语句,但没有找到相关的and语句
只有orWhere 语法,没有andWhere语法
$users = DB::table('users')
->where('votes', '>', 100)
->orWhere('name', 'John')
->get();
有谁知道,非常感谢
3 个回复
FiveSay - 成武
赞同来自: mysteo 、00幽靈00
00幽靈00 - 略知一二,不求甚解
赞同来自: mysteo 、FiveSay
can be like this:
匿名用户
赞同来自:
刚好测试出来了
用数组的方法
$user =DB::table('db_user')->select('username')->where(array('username'=>$username,'password'=>md5($password)))->get();