连接查询

Posted 学知无涯

tags:

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

left join 左连接 以左表为准,但是如果右表也有查询条件时,需要特别注意:

 

比如这样,只能获取到左右表都符合条件的数据:

SELECT a.id,b.status FROM bw_home_message a

right join bw_home_message_log as b

on a.id=b.home_message_id

WHERE a.home_id = 0 AND a.type = 2 AND b.home_id = ‘2‘

 

如果只是以左表为准的话需要修改一下:

SELECT a.id,b.status FROM bw_home_message a

left join

(SELECT home_message_id,status FROM bw_home_message_log where home_id=2) as b

on a.id=b.home_message_id

WHERE a.home_id = 0 AND a.type = 2

 

Thinkphp中:

$where = array(‘a.home_id‘ => 0, ‘a.type‘ => 2);
$logTable = C(‘DB_PREFIX‘) . ‘home_message_log‘;

$sql = "SELECT home_message_id,status FROM {$logTable} where home_id=" . $home_id;
$info = M(‘home_message‘)->alias(‘a‘)->join("left join ($sql) as b on a.id=b.home_message_id")->where($where)->field(‘a.id,b.status‘)->select();
             

 

以上是关于连接查询的主要内容,如果未能解决你的问题,请参考以下文章

使用实体框架迁移时 SQL Server 连接抛出异常 - 添加代码片段

你如何在 python 中处理 graphql 查询和片段?

Hibernate的HQL多表查询

在 Rails 上为连接、限制、选择等(不是条件)的 SQL 片段安全地转义字符串

Microsoft SQL Server 代码片段收集

片段视图返回后执行的 Firebase 查询