Select*fromcustomers;+-------------+---- ------+|Customer_Id|Name |+-------------+----------+|1 |Rahul &am"/> Select*fromcustomers;+-------------+---- ------+|Customer_Id|Name |+-------------+----------+|1 |Rahul &am">

Home  >  Article  >  Database  >  How can we create a MySQL view using LEFT JOIN?

How can we create a MySQL view using LEFT JOIN?

WBOY
WBOYforward
2023-09-02 20:33:021378browse

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

To illustrate the making of MySQL views using LEFT JOIN, we use the following data from the "Customers" and "Resreve" tables -

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)

Now, The following query will create a view called "customer_VLeft" using LEFT JOIN on the above table, which contains the names of customers who have not booked any cars.

mysql> Create view customer_Vleft AS SELECT NAME from customers LEFT JOIN RESERVE ON customer_id = id WHERE id IS NULL;
Query OK, 0 rows affected (0.13 sec)

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

The above is the detailed content of How can we create a MySQL view using LEFT JOIN?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete