INNER 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)
이제 다음 쿼리는 위에서 언급한 테이블에서 INNER JOIN을 사용하여 'customer_V'라는 뷰를 생성합니다. 여기에는 한 대 이상의 자동차를 예약한 고객의 이름이 있습니다.
mysql> CREATE VIEW customer_V AS Select DISTINCT Name FROM customers c INNER JOIN Reserve R ON R.id = c.customer_id; Query OK, 0 rows affected (0.08 sec) mysql> Select * from customer_V; +---------+ | Name | +---------+ | Rahul | | Yashpal | | Gaurav | +---------+ 3 rows in set (0.02 sec)