如何将子查询转换为 LEFT 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 −
- 将子查询中命名的“Reserve”表移动到 FROM 子句,并使用 LEFT JOIN 将其连接到“Customers”。
- WHERE 子句将 customer_id 列与从子查询返回的 id 进行比较。因此,将 IN 表达式转换为 FROM 子句中两张表的 id 列之间的直接比较。
- 在 WHERE 子句中,将输出限制为 “Reserve”表中为 NULL 的那些行。
mysql> SELECT Name from customers LEFT JOIN reserve ON customer_id = Id WHERE Id IS NULL; +----------+ | Name | +----------+ | Virender | +----------+ 1 row in set (0.00 sec)
广告