Home > Database > Mysql Tutorial > How can we create a MySQL view using RIGHT JOIN?

How can we create a MySQL view using RIGHT JOIN?

WBOY
Release: 2023-09-05 19:49:06
forward
739 people have browsed it

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

To illustrate how to create a MySQL view using RIGHT 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)
Copy after login

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

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)
Copy after login

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

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template