tp5中的一些where操作

Posted nnhgd

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tp5中的一些where操作相关的知识,希望对你有一定的参考价值。

快捷查询

where(‘id&age‘,‘>‘,0);
where(‘id|age‘,‘>‘,0);

闭包查询

$result = Db::name(‘data‘)
->select(function($query){$query->where(‘name‘,‘like‘,‘%think%‘)
->where(‘id‘,‘in‘,‘1,2,3‘)->limit(10);
});

$result = Db::name(‘data‘)
->select(function($query){$query->where(‘name‘,‘like‘,‘%think%‘)
->where(‘id‘,‘ between‘,[1,3])->limit(10);
});

获取列数据,并且以id为索引

$list = Db::name(‘data‘)
->where(‘status‘,1)
->column(‘name‘,‘id‘);

聚合查询

Db::name(‘data‘)
->where(‘id‘,‘>‘,1)
->count();

Db::name(‘data‘)
->where(‘id‘,‘>‘,1)
->max(‘age‘);

字符串查询

$result = Db::table(‘user‘)
->where(‘id>:id and name is not null‘,[‘id‘=>10])
->select();

日期时间查询

查询大于某日的数据

$result = Db::table(‘user‘)
->whereTime(‘create_time‘,‘>‘,‘2017-01-01‘)
->select();

查询本周的数据

$result = Db::table(‘user‘)
->whereTime(‘create_time‘,‘week‘)
->select();

查询最近两天添加的数据

$result = Db::table(‘user‘)
->whereTime(‘create_time‘,‘-2 days‘)
->select();

查询一个时间范围的数据

$result = Db::table(‘user‘)
->whereTime(‘create_time‘,‘between‘,[‘2017-1-1‘,‘2017-1-10‘])
->select();

查询上周的数据

$result = Db::table(‘user‘)
->whereTime(‘create_time‘,‘last week‘)
->select();

以上是关于tp5中的一些where操作的主要内容,如果未能解决你的问题,请参考以下文章

tp5连表查询时,where语句冲突问题

tp5数据库——链式操作

TP5.1 whereOr查询

php tp5 语句后面链式追加sql语句

二级分类 + 权限匹配(后台TP5.0)

tp5分页,一看就懂,简单明了(附带额外参数)