ThinkPHP运算符 与 SQL运算符 对照表

来源:互联网 发布:淘宝达人和微淘号达人 编辑:程序博客网 时间:2024/05/21 18:43

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

<

$map['id'] = array('lt',100);

id < 100

elt

<=

$map['id'] = array('elt',100);

id <= 100

like

like

$map<'username'> = 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 < 10)

or

or

$map['id'] = array(array('gt',3),array('lt',10), 'or');

(id > 3) OR (id < 10)

xor(异或)

xor

两个输入中只有一个是true时,结果为true,否则为false,例子略。

1 xor 1 = 0

exp

综合表达式

$map['id'] = array('exp','in(1,3,8)');

$map['id'] = array('in','1,3,8');

or

不同字段 or 

$map['id'] = '8';

$map['pid'] = '10';

$map['_logic'] = 'OR';

'id'=8 AND 'pid'=10

 

 

补充说明

·  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 条件中使用表达式

原文出自http://www.cnblogs.com/martin1009/archive/2012/08/24/2653718.html

 

 

 

 

如果只是更新个别字段的值,可以使用setField方法。

使用示例:

1. $User = M("User"); // 实例化User对象

2. // 更改用户的name

3. $User-> where('id=5')->setField('name','ThinkPHP');

setField方法支持同时更新多个字段,只需要传入数组即可,例如:

1. $User = M("User"); // 实例化User对象

2. // 更改用户的nameemail的值

3. $data = array('name'=>'ThinkPHP','email'=>'ThinkPHP@gmail.com');

4. $User-> where('id=5')->setField($data);

而对于统计字段(通常指的是数字类型)的更新,系统还提供了setInc和setDec方法。

1. $User = M("User"); // 实例化User对象

2. $User->where('id=5')->setInc('score',3); // 用户的积分加3

3. $User->where('id=5')->setInc('score'); // 用户的积分加1

4. $User->where('id=5')->setDec('score',5); // 用户的积分减5

5. $User->where('id=5')->setDec('score'); // 用户的积分减1

 


0 0
原创粉丝点击