查询方法-j9九游

条件查询方法

where方法

可以使用where方法进行and条件查询:

db::table('think_user')
    ->where('name','like','%thinkphp')
    ->where('status',1)
    ->find();

多字段相同条件的and查询可以简化为如下方式:

db::table('think_user')
    ->where('name&title','like','%thinkphp')
    ->find();

whereor方法

使用whereor方法进行or查询:

db::table('think_user')
    ->where('name','like','%thinkphp')
    ->whereor('title','like','%thinkphp')
    ->find();

多字段相同条件的or查询可以简化为如下方式:

db::table('think_user')
    ->where('name|title','like','%thinkphp')
    ->find();

混合查询

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();

生成的sql语句类似于下面:

select * from `think_user` where  (  `id` = 1 or `id` = 2 ) or (  `name` like 'think' or `name` like 'thinkphp' )

注意闭包查询里面的顺序,而且第一个查询方法用where或者whereor是没有区别的。

gettableinfo方法

使用gettableinfo可以获取表信息,信息类型 包括 fields,type,bind,pk,以数组的形式展示,可以指定某个信息进行获取

// 获取`think_user`表所有信息
db::gettableinfo('think_user');
// 获取`think_user`表所有字段
db::gettableinfo('think_user', 'fields');
// 获取`think_user`表所有字段的类型
db::gettableinfo('think_user', 'type');
// 获取`think_user`表的主键
db::gettableinfo('think_user', 'pk');
文档最后更新时间:2018-04-26 09:28:23
网站地图