FleaPHP【数据库】 查询条件($conditions) 的写法

 

FleaPHP中,凡是用到数据库查询的函数,都需要查询条件参数$conditions,现讲述用法如下:

举例:

  1. // $conditions 保存<b style=”color: black; background-color: rgb(153, 255, 153);”>查询</b>条件
  2. $conditions = ‘level_ix > 1′;
  3. // $tableOrders 是一个订单数据表的表数据入口对象
  4. $order = $tableOrders->find($conditions, ‘created DESC’, ‘id, title, body’);
  5. $conditions = array(‘username’ => ‘dualface’);
  6. // $tableUsers 是一个用户信息数据表的表数据入口对象
  7. $user = $tableUsers->find($conditions);
  // $conditions 保存查询条件
  $conditions = 'level_ix > 1';
  // $tableOrders 是一个订单数据表的表数据入口对象
  $order = $tableOrders->find($conditions, 'created DESC', 'id, title, body');
  $conditions = array('username' => 'dualface');
  // $tableUsers 是一个用户信息数据表的表数据入口对象
  $user = $tableUsers->find($conditions);

$conditions 参数可以是整数字符串数组三种类型:

1.如果 $conditions 参数是一个整数,则假定该整数为主键字段值。

  1. // <b style=”color: black; background-color: rgb(153, 255, 153);”>查询</b>主键字段值为1的记录
  2. $user = $tableUsers->find(1);
  3. // 如果主键字段名为“id”,则生成的where字句为“WHERE `id` = 1”
// 查询主键字段值为1的记录
$user = $tableUsers->find(1);
// 如果主键字段名为“id”,则生成的where字句为“WHERE `id` = 1”

2.如果 $conditions 参数是一个字符串,则该字符串将直接作为查询条件,这种方式可以支持最灵活的查询条件。 例如:

  1. $conditions = ‘id < 3′
  2. $user = $tableUsers->find($conditions);
  3. //生成的where字句为“WHERE id < 3”
$conditions = 'id < 3'
$user = $tableUsers->find($conditions);
//生成的where字句为“WHERE id < 3”

3.1.如果 $conditions 参数是一个数组,且指定了键名和值,则查询条件中字段名为键名,字段值等于键值。例如:

  1. // <b style=”color: black; background-color: rgb(153, 255, 153);”>查询</b>id字段值为3的记录
  2. $conditions = array(
  3. ‘id’ => ‘1′,
  4. );
  5. $user = $tableUsers->find($conditions);
  6. //生成的where字句为“WHERE `id` = 1”
// 查询id字段值为3的记录
$conditions = array(
   'id' => '1',
  );
$user = $tableUsers->find($conditions);
//生成的where字句为“WHERE `id` = 1”

3.2.如果 $conditions 参数是一个数组,但其中的元素没有键名, 则假定键值为自定义查询条件,例如

  1. $conditions = array(‘id = 1′);
  2. // 生成的where字句为“WHERE `id` = 1”
  3. $user = $tableUsers->find($conditions);
$conditions = array('id = 1');
// 生成的where字句为“WHERE `id` = 1”
$user = $tableUsers->find($conditions);

3.3.$conditions 为数组时,可以混用字符串和键值对两种风格:

  1. $conditions = array(
  2. ‘id < 3′,
  3. ’sex’ => ‘male’,
  4. );
  5. $user = $tableUsers->find($conditions);
  6. // 生成的where字句为“id < 3 AND `sex` = ‘male’”
$conditions = array(
   'id < 3',
   'sex' => 'male',
);
$user = $tableUsers->find($conditions);
// 生成的where字句为“id < 3 AND `sex` = 'male'”

$conditions 为数组时,多个查询条件之间将使用 AND 布尔运算符进行连接。

3.4.“in()”查询FleaPHP中的实现。(原文由DreamPig发表于http://www.fleaphp.org/bbs/viewthread.php?tid=2168
我们有时候要用到in这样的操作,那么在condition里面怎么写呢?

  1. // 假如主键名为“id”,需要<b style=”color: black; background-color: rgb(153, 255, 153);”>查询</b>id的值为1、2、3其中之一,则可以这样写:
  2. $condition = array(
  3. ‘in()’ => array(1,2,3),
  4. )
  5. $user = $tableUsers->find($conditions);
  6. // 生成的where子句为“WHERE `id` IN (1, 2, 3)”
// 假如主键名为“id”,需要查询id的值为1、2、3其中之一,则可以这样写:
$condition = array(
    'in()' => array(1,2,3),
)
$user = $tableUsers->find($conditions);
// 生成的where子句为“WHERE `id` IN (1, 2, 3)”

那么如果不是主键的话怎么写了呢? 也很简单,提供键值对即可。例如:

  1. $condition = array(
  2. ‘in()’ => array(
  3. ‘username’ => array(‘username1′,‘username2′)
  4. )
  5. )
  6. $user = $tableUsers->find($conditions);
  7. // 生成的where子句为“WHERE `username` IN (’username1′, ‘username2′)”
$condition = array(
    'in()' => array(
                    'username' => array('username1','username2')
                 )
    )
$user = $tableUsers->find($conditions);
// 生成的where子句为“WHERE `username` IN ('username1', 'username2')”

4.find()函数中其它参数的含义和用法如下:

4.1.$sort 参数指定查询时的排序方式,类型只能为字符串
例如 ‘created ASC’ 表示按照“created”字段进行从小到大的排序。

4.2.$fields 参数指定查询结果中要包含哪些字段,类型可以为字符串或数组
当数据表的字段很多时,通过指定 $fields 参数可以避免查询不需要的字段,从而提高性能。
$fields 参数即可是以“,”逗号分隔的字段名,也可以是包含多个字段名的数组,例如:

  1. $fields = array(‘title’, ‘created’);
  2. //也可以写成下面的字符串形式,两种写法作用相同,区别在于自动生成的字段名两边将会添加上“`”符号,以防止出现字段名与SQL关键字冲突的情况出现。建议手写时也加上“`”字符
  3. $fields = ‘title, created’;
  4. $user = $tableUsers->find(‘id < 10′,NULL,$fields);
$fields = array('title', 'created');
//也可以写成下面的字符串形式,两种写法作用相同,区别在于自动生成的字段名两边将会添加上“`”符号,以防止出现字段名与SQL关键字冲突的情况出现。建议手写时也加上“`”字符
$fields = 'title, created';
$user = $tableUsers->find('id < 10',NULL,$fields);

推荐使用数组,这样表数据入口处理起来更快一些。

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值