Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> MySQL

เราจะสร้างมุมมอง MySQL ด้วย RIGHT JOIN ได้อย่างไร


เพื่อแสดงการสร้างมุมมอง MySQL ด้วย RIGHT JOIN เราใช้ข้อมูลต่อไปนี้จากตาราง 'ลูกค้า' และ '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)

ในตอนนี้ แบบสอบถามต่อไปนี้จะสร้างมุมมองที่ชื่อว่า 'customer_VRight' โดยใช้ RIGHT JOIN ในตารางที่กล่าวถึงข้างต้น ซึ่งจะมีชื่อของลูกค้าที่ไม่ได้จองรถใดๆ ไว้

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)