ThinkPHP多表联合查询的常用方法

2015-01-24信息快讯网

这篇文章主要介绍了ThinkPHP多表联合查询的常用方法,对于项目开发非常重要!需要的朋友可以参考下

ThinkPHP中关联查询(即多表联合查询)可以使用 table() 方法或和join方法,具体使用如下例所示:

1、原生查询示例:

$Model = new Model();
$sql = 'select a.id,a.title,b.content from think_test1 as a, think_test2 as b where a.id=b.id '.$map.' order by a.id '.$sort.' limit '.$p->firstRow.','.$p->listRows;
$voList = $Model->query($sql);

2、join()方法示例:

$user = new Model('user');
$list = $user->join('RIGHT JOIN user_profile ON user_stats.id = user_profile.typeid' );

3、table()方法示例:

$list = $user->table('user_status stats, user_profile profile')->where('stats.id = profile.typeid')->field('stats.id as id, stats.display as display, profile.title as title,profile.content as content')->order('stats.id desc' )->select();

ThinkPHP处理Ajax返回的方法
php隐藏IP地址后两位显示为星号的方法
PHP生成不重复标识符的方法
PHP检测字符串是否为UTF8编码的常用方法
php防止恶意刷新与刷票的方法
PHP PDOStatement对象bindpram()、bindvalue()和bindcolumn之间的区别
php管理nginx虚拟主机shell脚本实例
php中FTP函数ftp_connect、ftp_login与ftp_chmod用法
PHP遍历目录函数opendir()、readdir()、closedir()、rewinddir()总结
php使用glob函数快速查询指定目录文件的方法
ThinkPHP水印功能实现修复PNG透明水印并增加JPEG图片质量可调整
Thinkphp中volist标签mod控制一定记录的换行BUG解决方法
ThinkPHP入库出现两次反斜线转义及数据库类转义的解决方法
ThinkPHP实现二级循环读取的方法
ThinkPHP查询语句与关联查询用法实例
thinkphp视图模型查询提示ERR: 1146:Table 'db.pr_order_view' doesn't exist的解决方法
thinkphp实现like模糊查询实例
Yii查询生成器(Query Builder)用法实例教程
ThinkPHP的截取字符串函数无法显示省略号的解决方法
ThinkPHP2.0读取MSSQL提示Incorrect syntax near the keyword 'AS'的解决方法
ThinkPHP查询中的魔术方法简述
Thinkphp实现MySQL读写分离操作示例
PHP获取windows登录用户名的方法
PHP获取MySql新增记录ID值的3种方法
ThinkPHP3.1新特性之动态设置自动完成及自动验证示例代码
ThinkPHP结合ajax、Mysql实现的客户端通信功能代码示例
Discuz批量替换帖子内容的方法(使用SQL更新数据库)
ThinkPHP3.1查询语言详解
ThinkPHP3.1新特性之查询条件预处理简介
php版淘宝网查询商品接口代码示例
php通过数组实现多条件查询实现方法(字符串分割)
©2014-2024 dbsqp.com