查询语法-j9九游
版本 | 新增功能 |
---|---|
5.0.9 | 比较运算增加闭包子查询支持 |
5.0.4 | 支持对同一个字段多次调用查询方法 |
查询表达式支持大部分的sql查询语法,也是thinkphp
查询语言的精髓,查询表达式的使用格式:
where('字段名','表达式','查询条件');
whereor('字段名','表达式','查询条件');
表达式不分大小写,支持的查询表达式有下面几种,分别表示的含义是:
表达式 | 含义 |
---|---|
eq、= | 等于(=) |
neq、<> | 不等于(<>) |
gt、> | 大于(>) |
egt、>= | 大于等于(>=) |
lt、< | 小于(<) |
elt、<= | 小于等于(<=) |
like | 模糊查询 |
[not] between | (不在)区间查询 |
[not] in | (不在)in 查询 |
[not] null | 查询字段是否(不)是null |
[not] exists | exists查询 |
exp | 表达式查询,支持sql语法 |
> time | 时间比较 |
< time | 时间比较 |
between time | 时间比较 |
notbetween time | 时间比较 |
表达式查询的用法示例如下:
eq :等于(=)
例如:
where('id','eq',100);
where('id','=',100);
和下面的查询等效
where('id',100);
表示的查询条件就是 id = 100
neq: 不等于(<>)
例如:
where('id','neq',100);
where('id','<>',100);
表示的查询条件就是 id <> 100
gt:大于(>)
例如:
where('id','gt',100);
where('id','>',100);
表示的查询条件就是 id > 100
egt:大于等于(>=)
例如:
where('id','egt',100);
where('id','>=',100);
表示的查询条件就是 id >= 100
lt:小于(<)
例如:
where('id','lt',100);
where('id','<',100);
表示的查询条件就是 id < 100
elt: 小于等于(<=)
例如:
where('id','elt',100);
where('id','<=',100);
表示的查询条件就是 id <= 100
[not] like: 同sql的like
例如:
where('name','like','thinkphp%');
查询条件就变成 name like 'thinkphp%'
v5.0.5
版本开始,like查询支持使用数组
where('name','like',['%think','php%'],'or');
[not] between :同sql的[not] between
查询条件支持字符串或者数组,例如:
where('id','between','1,8');
和下面的等效:
where('id','between',[1,8]);
查询条件就变成 id between 1 and 8
[not] in: 同sql的[not] in
查询条件支持字符串或者数组,例如:
where('id','not in','1,5,8');
和下面的等效:
where('id','not in',[1,5,8]);
查询条件就变成 id not in (1,5, 8)
[not] in
查询支持使用闭包方式
[not] null :
查询字段是否(不)是null
,例如:
where('name', null);
where('title','null');
where('name','not null');
如果你需要查询一个字段的值为字符串null
或者not null
,应该使用:
where('title','=', 'null');
where('name','=', 'not null');
exp:表达式
支持更复杂的查询情况 例如:
where('id','in','1,3,8');
可以改成:
where('id','exp',' in (1,3,8) ');
exp
查询的条件不会被当成字符串,所以后面的查询条件可以使用任何sql支持的语法,包括使用函数和字段名称。
文档最后更新时间:2018-04-26 09:30:43
未解决你的问题?请到「问答社区」反馈你遇到的问题