我们如何将子查询转换为 RIGHT JOIN?


为了理解,我们正在使用以下各表的资料 −

mysql> Select * from Customers;
+-------------+----------+
| Customer_Id | Name     |
+-------------+----------+
| 1           | Rahul    |
| 2           | Yashpal  |
| 3           | Gaurav   |
| 4           | Virender |
+-------------+----------+
4 rows in set (0.00 sec)

mysql> Select * from Reserve;
+------+------------+
| ID   | Day        |
+------+------------+
| 1    | 2017-12-30 |
| 2    | 2017-12-28 |
| 2    | 2017-12-25 |
| 1    | 2017-12-24 |
| 3    | 2017-12-26 |
+------+------------+
5 rows in set (0.00 sec)

现在,以下是一个子查询,它将查找尚未预订任何车辆的所有顾客的姓名。

mysql> Select Name from customers where customer_id NOT IN (Select id From reserve);
+----------+
| Name     |
+----------+
| Virender |
+----------+
1 row in set (0.00 sec)

现在,在以下步骤的帮助下,我们可以将上述子查询转换为 RIGHT JOIN −

  • 将子查询中命名的“Customers”表移动到 FROM 子句,并使用 RIGHT JOIN 将其加入到“Reserve”。

  • WHERE 子句将 customer_id 列与从子查询返回的 id 进行比较。因此,将 IN 表达式转换为 FROM 子句中两个表的 id 列之间的显式直接比较。

  • 在 WHERE 子句中,将输出限制为在“Reserve”表中具有 NULL 的行。

mysql> SELECT Name from reserve RIGHT JOIN customers ON customer_id = Id WHERE Id IS NULL;
+----------+
| Name     |
+----------+
| Virender |
+----------+
1 row in set (0.00 sec)

更新于: 2020 年 6 月 22 日

149 次浏览

开始你的事业

通过完成课程获得认证

开始
广告