thinkphp中如何是实现多表查询

Posted chinalorin2015

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkphp中如何是实现多表查询相关的知识,希望对你有一定的参考价值。

1
2
3
4
5
6
7
8
9
10
11
12
// 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(‘user1 a, user2 b‘)->where(‘a.id = b.id‘)
->field(‘name,sex‘)->order(‘id desc‘ )->select();

以上是关于thinkphp中如何是实现多表查询的主要内容,如果未能解决你的问题,请参考以下文章

thinkphp3.2 子查询

thinkphp3.1 多表联合查询代码

thinkphp3表连查带求和

thinkphp tp5多表查询

thinkphp两表,多表联合查询及分页的连贯操作写法

THINKPHP 中关联查询(多表查询)