首頁  >  文章  >  資料庫  >  我們如何使用 RIGHT JOIN 建立 MySQL 視圖?

我們如何使用 RIGHT JOIN 建立 MySQL 視圖?

WBOY
WBOY轉載
2023-09-05 19:49:06717瀏覽

我们如何使用 RIGHT JOIN 创建 MySQL 视图?

為了說明如何使用RIGHT JOIN 建立MySQL 視圖,我們使用「Customers」和「Resreve」表中的以下資料-

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)

現在,以下查詢將使用上述表上的RIGHT JOIN 建立一個名為「customer_VRight」的視圖,其中包含尚未預訂任何汽車的客戶的姓名。

mysql> Create view customer_VRight AS SELECT NAME from Reserve RIGHT JOIN customers ON customer_id = id WHERE id IS NULL;
Query OK, 0 rows affected (0.08 sec)

mysql> Select * from customer_VRight;
+----------+
| NAME     |
+----------+
| Virender |
+----------+
1 row in set (0.00 sec)

以上是我們如何使用 RIGHT JOIN 建立 MySQL 視圖?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除