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

THINKPHP 中关联查询(多表查询)可以使用 table() 方法或和join方法,请看示例:

1、Table方法:定义要操作的数据表名称,可以动态改变当前操作的数据表名称,需要写数据表的全名,包含前缀,可以使用别名,例如:

$Model->Table(‘think_user user‘)

->where(‘status>1‘)

->select();

$Model->table(‘think_blog blog,think_type type‘)
->where(‘blog.typeid=type.id‘)
->field(‘blog.id as id,blog.title,blog.content,type.typename as type‘)
->order(‘blog.id desc‘ )
->limit(5)
->select();

Table方法的参数支持字符串和数组,数组方式的用法:

$Model->Table(array(‘think_user‘=>‘user‘,‘think_group‘=>‘group‘))

->where(‘status>1‘)

->select();

使用数组方式定义的优势是可以避免因为表名和关键字冲突而出错的情况。

注:如果不定义table方法,默认会自动获取当前模型对应或者定义的数据表。

2、Join方法:查询Join支持,Join方法的参数支持字符串和数组,并且join方法是连贯操作中唯一可以多次调用的方法。例如:

$Model->join(‘work ON artist.id = work.artist_id‘)

->join(‘card ON artist.card_id = card.id‘)

->select();

//Left Join
$Model->table(‘user U‘)

->join(‘news N on U.id=N.cid‘)

->field(‘U.*,N.*‘)

->order(‘id desc‘)

->limit(‘8‘)

->findall();

默认采用LEFT JOIN 方式,如果需要用其他的JOIN方式,可以改成

$Model->join(‘RIGHT JOIN work ON artist.id = work.artist_id‘)

->select();

//Right Join
$Model->table(‘user U‘)
->join(array(‘right‘,‘news N on U.id=N.cid‘))
->field(‘U.*,N.*‘)
->order(‘id desc‘)
->limit(‘8‘)
->findall();

如果join方法的参数用数组的话,只能使用一次join方法,并且不能和字符串方式混合使用。

$Model->join(array(‘ work ON artist.id = work.artist_id‘, ‘card ON artist.card_id = card.id‘))

->select()

运用这种连贯操作方法,可以有效的提高数据查询的代码清晰度和开发效率。

查看连贯操作的SQL语句的方法:

echo $Model->getLastSql(); //打印一下SQL语句,查看一下

例2:
1、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();

2.1、join()2表查询

$user = new Model(‘user‘);

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

2.2、join() 多表查询

$list = $Form->join(‘think_sort ON think_form.sort_id = think_sort.sort_id‘ )->join(‘think_brand ON think_form.brand_id = think_brand.brand_id‘ )->select();

3、原生查询

$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);

时间: 2024-11-08 12:36:24

THINKPHP 中关联查询(多表查询)的相关文章

单表查询: where group by 分组 having distinct 去重 order by 排序 limit 多表查询 子查询 连表查询

今日内容 表查询 单表查询: where group by 分组 having distinct 去重 order by 排序 limit 多表查询 子查询 连表查询 单表查询 前期表准备 create table emp( id int not null unique auto_increment, name varchar(20) not null, sex enum('male','female') not null default 'male', #大部分是男的 age int(3) u

Oracle中把一张表查询结果插入到另一张表中

一.Oracle数据库中,把一张表的查询结果直接生成并导入一张新表中.  例如:现有只有A表,查询A表,并且把结果导入B表中.使用如下SQL语句: Sql代码  create table B as select * from A    二.Oracle数据库中支持把查询结果导入到另外一张表中.  例如:有两个表A和B 1)如果两个表的表结构是否相同,但要插入的字段类型相同:  (1)把A表的全部字段数据插入到B表中: Sql代码  insert into B select * from A;  

python开发mysql:单表查询&多表查询

一 单表查询,以下是表内容 1 一 having 过滤 2 1.1 having和where 3 select * from emp where id > 15; 4 解析过程;from > where 找到数据 > 分组(没有默认一个组)> select 打印 where是出结果之前 5 select * from emp having id > 15; 6 解析过程;from > where 找到数据(没有约束条件,就是整个表)) > 分组(没有默认一个组)&

67 orm13查询语句,外键查询,多对多查询 单表查询双下划线方法

主要内容:https://www.cnblogs.com/maple-shaw/articles/9403501.html 注意:  如果想要文件中运行整个django项目: 需要在文件中写入: import os if __name__ == "__main__": os.environ.setdefault("DJANGO_SETTINGS_MODULE", "orm_operate.settings") import django djan

单表查询,多表查询

单表查询 前期表准备 create table emp( id int not null unique auto_increment, name varchar(20) not null, sex enum('male','female') not null default 'male', #大部分是男的 age int(3) unsigned not null default 28, hire_date date not null, post varchar(50), post_comment

MySQL数据库 多表查询 交叉连接 自然连接 内连接 自连接 外连接 子查询 多表查询练习 单表查询练习 𚳮

原文: http://blog.gqylpy.com/gqy/466 置顶:来自一名75后老程序员的武林秘籍--必读(博主推荐) 来,先呈上武林秘籍链接:http://blog.gqylpy.com/gqy/401/ 你好,我是一名极客!一个 75 后的老工程师! 我将花两分钟,表述清楚我让你读这段文字的目的! 如果你看过武侠小说,你可以把这个经历理解为,你失足落入一个山洞遇到了一位垂暮的老者!而这位老者打算传你一套武功秘籍! 没错,我就是这个老者! 干研发 20 多年了!我也年轻过,奋斗过!我

mysql单表查询&&多表查询(职员表14+9)

dept(deptno,dname,loc) emp(empno,ename,job,mgr,hiredate,sal,COMM,deptno) salgrade(grade,losal,hisal) stu(sid,sname,age,gander,province,tuition) 单表查询题目 ==================================================== dept(deptno,dname,loc) emp(empno,ename,job,mgr

inner join on 三表查询四表查询5表查询不管多少表都可以

一.创建三个表 1.hanshu 2.YingHu 3.text 二.关系图连接设主键 三.inner  join   on  使用语法 INNER JOIN 连接两个数据表的用法:SELECT * FROM 表1 INNER JOIN 表2 ON 表1.字段号=表2.字段号 INNER JOIN 连接三个数据表的用法:SELECT * FROM (表1 INNER JOIN 表2 ON 表1.字段号=表2.字段号) INNER JOIN 表3 ON 表1.字段号=表3.字段号 INNER JO

mysql中一库多表查询主键

mysql> show databases; mysql> use information_schema; mysql> show tables; mysql> select * from KEY_COLUMN_USAGE;    //这一步是查询每个库里每个表的信息 mysql> select * from KEY_COLUMN_USAGE where TABLE_SCHEMA='table_name' and CONSTRAINT_NAME='PRIMARY';  //根