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


Posted in PHP onNovember 01, 2014

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

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

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

一、使用数组作为查询条件

$User = M("User"); //实例化User对象
$condition['name'] = 'thinkphp'; // 把查询条件传入查询方法

$User->where($condition)->select();

二、使用对象方式来查询 可以使用任何对象 这里以stdClass内置对象为例
$User = M("User"); // 实例化User对象

// 定义查询条件 $condition = new stdClass();

$condition->name = 'thinkphp';  // 查询name的值为thinkphp的记录

$User->where($condition)->select(); //  上面的查询条件等同于 where('name="thinkphp"') 使用对象方式查询和使用数组查询的效果是相同的,并且是可

带where条件的普通查询
  
1、字符串形式

$user=M('user');

$list=$user->where('id>5 and id<9')->select();

$list=$user->where($data)->select();

2、数组形式
$user=M('user');

$list=$user->where(array('username'=>'3water.com'))->select();

$list=$user->where($data)->select();

3、对象形式
$user=M('user');

$a=new stdClass();

$a->username='3water.com;

$list=$user->where($a)->select();

两个表的关联查询:
$M_shopping = M('Shops'); 

$M_product = M('Product'); 

$list_shops = $M_shopping->join('as shops left join hr_product as product on shops.product_id = product.p_id') 

->field('product.p_id,product.p_name,shops.product_amount,shops.product_id') 

->where("shops.user_cookie='".$_COOKIE['hr_think_userid']."'") 

->group('shops.id') 

->select();

区间查询

$user=M('user');

$data['id']=array(array('gt',20),array('lt',23),'and');

$list=$user->where($data)->select();

组合查询
$user=M('user');

$data['username']='pengyanjie';

$data['password']=array('eq','pengyanjie');

$data['id']=array('lt',30);

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

$list=$user->where($data)->select();

dump($list);

复合查询
$user=M('user');

$data['username']=array('eq','pengyanjie');

$data['password']=array('like','p%');

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

$where['_complex']=$where;

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

$list=$user->where($data)->select();

三个数据表的关联查询
$M_shopping = M('Shops');

$M_product = M('Product');

$M_proimg = M('Product_image');

$list_shops = $M_shopping->join('as shops left join hr_product as product on shops.product_id = product.p_id left join

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,

product.p_procolor,product.p_price,product_amount*p_price as totalone')->where("shops.user_cookie='".$_COOKIE['hr_think_userid']."'")

->group('shops.id')->select();

数据表的查询条件

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

$m_test = M("Product");

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

② 除了上面的方法还有一种是以数组的方式

$M_product = M('Product');

$map['pid'] = $proid;

$p_result = $M_product->where($map)->select();

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

PHP 相关文章推荐
PHP中实现进程间通讯
Oct 09 PHP
用php和MySql来与ODBC数据连接
Oct 09 PHP
php基础知识:类与对象(1)
Dec 13 PHP
php5.3 不支持 session_register() 此函数已启用的解决方法
Nov 12 PHP
ThinkPHP的URL重写问题
Jun 22 PHP
ThinkPHP基本的增删查改操作实例教程
Aug 22 PHP
php使用ob_flush不能每隔一秒输出原理分析
Jun 02 PHP
PHP实现微信发红包程序
Aug 24 PHP
php开发微信支付获取用户地址
Oct 04 PHP
php采用session实现防止页面重复刷新
Dec 24 PHP
PHP中PCRE正则解析代码详解
Apr 26 PHP
Laravel重定向,a链接跳转,控制器跳转示例
Oct 22 PHP
ThinkPHP分组下自定义标签库实例
Nov 01 #PHP
PHP根据两点间的经纬度计算距离
Oct 31 #PHP
ThinkPHP在新浪SAE平台的部署实例
Oct 31 #PHP
封装ThinkPHP的一个文件上传方法实例
Oct 31 #PHP
ThinkPHP无限级分类原理实现留言与回复功能实例
Oct 31 #PHP
ThinkPHP控制器间实现相互调用的方法
Oct 31 #PHP
ThinkPHP上使用多说评论插件的方法
Oct 31 #PHP
You might like
收集的PHP中与数组相关的函数
2007/03/22 PHP
php下mysql数据库操作类(改自discuz)
2010/07/03 PHP
php数组函数序列之array_slice() - 在数组中根据条件取出一段值,并返回
2011/11/07 PHP
php表单请求获得数据求和示例
2014/05/15 PHP
php常用的url处理函数总结
2014/11/19 PHP
PHP的Laravel框架中使用AdminLTE模板来编写网站后台界面
2016/03/21 PHP
PHP页面间传递值和保持值的方法
2016/08/24 PHP
yii2.0整合阿里云oss上传单个文件的示例
2017/09/19 PHP
PHP CURL与java http使用方法详解
2018/01/26 PHP
懒就要懒到底——鼠标自动点击(含时间判断)
2007/02/20 Javascript
ECMAScript6新增值比较函数Object.is
2015/06/12 Javascript
JS获取数组最大值、最小值及长度的方法
2015/11/24 Javascript
JS图片等比例缩放方法完整示例
2016/08/03 Javascript
JS实现图片局部放大或缩小的方法
2016/08/20 Javascript
JQuery ZTree使用方法详解
2017/01/07 Javascript
js通过指定下标或指定元素进行删除数组的实例
2017/01/12 Javascript
js禁止浏览器页面后退功能的实例(推荐)
2017/09/01 Javascript
nodejs创建简易web服务器与文件读写的实例
2017/09/07 NodeJs
浅析JavaScript中的特殊数据类型
2017/12/15 Javascript
Less 安装及基本用法
2018/05/05 Javascript
node跨域转发 express+http-proxy-middleware的使用
2018/05/31 Javascript
js序列化和反序列化的使用讲解
2019/01/19 Javascript
在node环境下parse Smarty模板的使用示例代码
2019/11/15 Javascript
简单介绍Python中的JSON模块
2015/04/08 Python
Python 搭建Web站点之Web服务器与Web框架
2016/11/06 Python
Python过滤txt文件内重复内容的方法
2018/10/21 Python
Python tkinter模版代码实例
2020/02/05 Python
python 比较字典value的最大值的几种方法
2020/04/17 Python
selenium3.0+python之环境搭建的方法步骤
2021/02/01 Python
Guess美国官网:美国知名服装品牌
2019/04/08 全球购物
巴西香水和化妆品购物网站:The Beauty Box
2019/09/03 全球购物
党风廉政建设责任书
2014/04/14 职场文书
公司股东合作协议书
2014/09/14 职场文书
2014年银行柜员工作总结
2014/11/12 职场文书
行政处罚决定书
2015/06/24 职场文书
Mysql将字符串按照指定字符分割的正确方法
2022/05/30 MySQL