找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 1282|回复: 0
打印 上一主题 下一主题

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

[复制链接]

2617

主题

2617

帖子

7789

积分

论坛元老

Rank: 8Rank: 8

积分
7789
跳转到指定楼层
楼主
发表于 2018-2-14 05:27:02 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

            Where 条件表达式格式为:
$map['字段名'] = array('表达式', '操作条件');
其中 $map 是一个普通的数组变量,可以根据自己需求而命名。上述格式中的表达式实际是运算符的意义:
ThinkPHP运算符 与 SQL运算符 对照表
  
   
      TP运算符
      SQL运算符
      例子
      实际查询条件
   
   
      eq
      =
      $map['id'] = array('eq',100);
      等效于:$map['id'] = 100;
   
   
      neq
      !=
      $map['id'] = array('neq',100);
      id != 100
   
   
      gt
      >
      $map['id'] = array('gt',100);
      id > 100
   
   
      egt
      >=
      $map['id'] = array('egt',100);
      id >= 100
   
   
      lt
       = array('like','Admin%');
      username like 'Admin%'
   
   
      between
      between and
      $map['id'] = array('between','1,8');
      id BETWEEN 1 AND 8
   
   
      not between
      not between and
      $map['id'] = array('not between','1,8');
      id NOT BETWEEN 1 AND 8
   
   
      in
      in
      $map['id'] = array('in','1,5,8');
      id in(1,5,8)
   
   
      not in
      not in
      $map['id'] = array('not in','1,5,8');
      id not in(1,5,8)
   
   
      and(默认)
      and
      $map['id'] = array(array('gt',1),array('lt',10));
      (id > 1) AND (id  3) OR (id
补充说明
• 同 SQL 一样,ThinkPHP运算符不区分大小写,eq 与 EQ 一样。
• between、 in 条件支持字符串或者数组,即下面两种写法是等效的:
$map['id'] = array('not in','1,5,8');
$map['id'] = array('not in',array('1','5','8'));
exp 表达式
上表中的 exp 不是一个运算符,而是一个综合表达式以支持更复杂的条件设置。exp 的操作条件不会被当成字符串,可以使用任何 SQL 支持的语法,包括使用函数和字段名称。
exp 不仅用于 where 条件,也可以用于数据更新,如:
$Dao = M("Article");
//构建 save 的数据数组,文章点击数+1
$data['id'] = 10;
$data['counter'] = array('exp','counter+1');
//根据条件保存修改的数据
$User->save($data);
以上这篇ThinkPHP Where 条件中常用表达式示例(详解)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
            
            
您可能感兴趣的文章:
  • ThinkPHP CURD方法之where方法详解
  • ThinkPHP中的常用查询语言汇总
  • ThinkPHP有变量的where条件分页实例
  • thinkPHP的表达式查询用法详解
            
  • 分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
    收藏收藏
    回复

    使用道具 举报

    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    用户反馈
    客户端