我们如何将子查询转换为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-

  • 将子查询中命名的“保留”表移至FROM子句,然后使用LEFT JOIN将其联接到“客户”。

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

  • 在WHERE子句中,将输出限制为“保留”表中具有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)

以上是 我们如何将子查询转换为LEFT JOIN? 的全部内容, 来源链接: utcz.com/z/316972.html

回到顶部