当前位置:首页 > CMS教程 > Thinkphp > 列表

ThinkPHP查询语句与关联查询用法实例

发布:smiling 来源: PHP粉丝网  添加日期:2021-04-21 10:21:40 浏览: 评论:0 

这篇文章主要介绍了ThinkPHP查询语句与关联查询用法,以实例的形式常见的查询方法,包括数组作为查询条件及对象方式来查询等技巧,需要的朋友可以参考下

本文实例讲述了ThinkPHP查询语句与关联查询用法。分享给大家供大家参考。具体如下:

在thinkphp框架页面中我们可以直接拼写sql查询语句来实现数据库查询读写操作,下面就对此加以实例说明。

普通查询除了字符串查询条件外,数组和对象方式的查询条件是非常常用的,这些是基本查询所必须掌握的。

一、使用数组作为查询条件,代码如下:

  1. $User = M("User"); //实例化User对象 
  2. $condition['name'] = 'thinkphp'// 把查询条件传入查询方法 
  3. $User->where($condition)->select(); 

二、使用对象方式来查询 可以使用任何对象 这里以stdClass内置对象为例,代码如下:

  1. $User = M("User"); // 实例化User对象 
  2. // 定义查询条件 $condition = new stdClass(); 
  3. $condition->name = 'thinkphp';  // 查询name的值为thinkphp的记录 
  4. $User->where($condition)->select(); //  上面的查询条件等同于 where('name="thinkphp"') 使用对象方式查询和使用数组查询的效果是相同的,并且是可 

带where条件的普通查询

1、字符串形式,代码如下:

  1. $user=M('user'); 
  2. $list=$user->where('id>5 and id<9')->select(); 
  3. $list=$user->where($data)->select(); 

2、数组形式,代码如下:

  1. $user=M('user'); 
  2. $list=$user->where(array('username'=>'www.phpfensi.com'))->select(); 
  3. $list=$user->where($data)->select(); 

3、对象形式,代码如下:

  1. $user=M('user'); 
  2. $a=new stdClass(); 
  3. $a->username='www.phpfensi.com; 
  4. $list=$user->where($a)->select(); 

两个表的关联查询:

  1. $M_shopping = M('Shops'); 
  2. $M_product = M('Product'); 
  3. $list_shops = $M_shopping->join('as shops left join hr_product as product on shops.product_id = product.p_id'
  4. ->field('product.p_id,product.p_name,shops.product_amount,shops.product_id'
  5. ->where("shops.user_cookie='".$_COOKIE['hr_think_userid']."'") 
  6. ->group('shops.id'
  7. ->select(); 

区间查询,代码如下:

  1. $user=M('user'); 
  2. $data['id']=array(array('gt',20),array('lt',23),'and'); 
  3. $list=$user->where($data)->select(); 

组合查询,代码如下:

  1. $user=M('user'); 
  2. $data['username']='pengyanjie'
  3. $data['password']=array('eq','pengyanjie'); 
  4. $data['id']=array('lt',30); 
  5. $data['_logic']='or'
  6. $list=$user->where($data)->select(); 
  7. dump($list); 

复合查询,代码如下:

  1. $user=M('user'); 
  2. $data['username']=array('eq','pengyanjie'); 
  3. $data['password']=array('like','p%'); 
  4. $data['_logic']='or'
  5. $where['_complex']=$where
  6. $where['id']=array('lt',30); 
  7. $list=$user->where($data)->select(); 

三个数据表的关联查询,代码如下:

  1. $M_shopping = M('Shops'); 
  2. $M_product = M('Product'); 
  3. $M_proimg = M('Product_image'); 
  4. $list_shops = $M_shopping->join('as shops left join hr_product as product on shops.product_id = product.p_id left join 
  5. hr_product_image as productimgon productimg.p_id = product.p_id')->fiel('productimg.pi_url,product.p_id,product.p_name,shops.product_amount,shops.product_id,product.am_id, 
  6. product.p_procolor,product.p_price,product_amount*p_price as totalone')->where("shops.user_cookie='".$_COOKIE['hr_think_userid']."'"
  7. ->group('shops.id')->select(); 

数据表的查询条件

① 下面的是直接吧查询的条件放到了where中,这样就方便了条件的书写,代码如下:

$m_test = M("Product");

$productmeaage = $m_test->where("p_id='$proid'")->select();

② 除了上面的方法还有一种是以数组的方式,代码如下:

  1. $M_product = M('Product'); 
  2. $map['pid'] = $proid
  3. $p_result = $M_product->where($map)->select(); 

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

Tags: ThinkPHP关联查询

分享到:

相关文章