php中条件查询语句,thinkphp3.2框架中where条件查询用法总结

本文实例讲述了thinkphp3.2框架中where条件查询用法。分享给大家供大家参考,具体如下:

thinkphp3.2 where 条件查询

在连贯操作中条件where的操作有时候自己很晕,所以整理下,有助于使用

查询条件

支持的表达式查询,tp不区分大小写

含义

TP运算符

SQL运算符

例子

实际查询条件

等于

EQ

=

$where['id'] = array('EQ','1')

id = 2

不等于

NEQ

!=

$where['id'] = array('NEQ','1')

id!=2

大于

GT

>

$where['id'] = array('GT','1')

id >1

大于等于

EGT

EGT

$where['id'] = array('EGT','1')

id>=1

小于

<

<

$where['id'] = array('lt',1)

id < 1

小于等于

<=

<=

$where['id'] = array('elt',1)

id<=1

匹配

like

like

where[′id′]=array(′like′,′where[′id′]=array(′like′,′where['id'] = array('like','begin%')

$where['id'] = array('like','%begin%')

where id like '%begin'

where id like 'begin%'

where id like'%begin%

在范围内包括俩端值

between

0<=id<=10

$where['id'] = array('between',array('0','10'))

where id between 0 and 10

不在范围内

not between

0 >id and 1o < id

$where['id'] = array('not between',array('0','10'))

where id not between 0 and 10

在枚举的值中

in

in

$where['id'] = array('in',array('1','2','5'))

where id in ('1','2','3')

不在枚举值中

not in

not in

$where['id'] = array('not in',array('1','2',5))

where id not in ('1','2','5')

exp

表达式查询,支持SQL语法exp 是表达式的意思,如果你觉得对于一个值限制条件太多的话就可以用这个

$where['id'] = array('exp','in ( select id from id from tableb)');

复查的查询语句

有的时候,我们希望通过一次的查询就能解决问题,这个时候查询条件往往比较复杂,但是却比多次查询库来的高效。

实在是搞不定的话就直接用$where['_string'] = 'xxxx', 这个代表查询的时候拼接上 xxx 条件,一次性解决问题

$where['_string'] = 'left join A on A.id = b.id where a.id not in (select id from C)';

1. 区间查询(一个值得多种情况)

默认是 and

$where['id'] =array(array('neq','8'),array('elt','200'),'and'); // 小于等于200 不等于 8

$where['id'] = array(array('neq','8'),'array('neq','10')','or'); // 不等于8或者不等于10

2. 复合查询

相当于封装了新的查询条件在里面

$where['a'] = 5;

$where['b'] = 6;

$where['_logic'] = 'or';

sql:where a = 5 or b = 6;

$condition['c'] = '3';

$condition['d'] = '4'

$condition['_logic'] = 'or'

$where['a'] = 9;

$where['_complex'] = $condition;

sql: where a=9 and (c = 3 or d = 4)

根据需求,灵活使用(无限套下去)

3. sql 查询

如果有设置了读写分离的话 query 是查询 execute是更新保存

M()->query('select * from a');

M()->execute('update a set counts = 3 where id = 1103')

4. 获取要执行的sql 语句

有的时候条件太复杂,比如 id in(xxxxx),这个xxx就是通过一系列操作获得的结果,嫌麻烦的就直接 都扔进去,写sql 又长,就直接获取sql语句扔进去

1.fetchsql

2.buildsql

3.select(false)

M('user')->fetchsql(true)->select();

M('user')->buildsql();

M('user')->select(false);

更多关于thinkPHP相关内容感兴趣的读者可查看本站专题:《ThinkPHP入门教程》、《thinkPHP模板操作技巧总结》、《ThinkPHP常用方法总结》、《codeigniter入门教程》、《CI(CodeIgniter)框架进阶教程》、《Zend FrameWork框架入门教程》及《PHP模板技术总结》。

希望本文所述对大家基于ThinkPHP框架的PHP程序设计有所帮助。

您可能感兴趣的文章:ThinkPHP中where()使用方法详解

ThinkPHP CURD方法之where方法详解

ThinkPHP Where 条件中常用表达式示例(详解)

ThinkPHP有变量的where条件分页实例

ThinkPHP5联合(关联)查询、多条件查询与聚合查询实例详解

Thinkphp使用mongodb数据库实现多条件查询方法

thinkphp3查询mssql数据库乱码解决方法分享

分享ThinkPHP3.2中关联查询解决思路

基于thinkPHP3.2实现微信接入及查询token值的方法

ThinkPHP3.1查询语言详解

ThinkPHP3.1新特性之查询条件预处理简介

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值