21. RIGHT JOIN
1. RIGHT JOIN
Keyword
RIGHT JOIN
키워드는 오른쪽 테이블(table2
)의 모든 레코드와 왼쪽 테이블(table1
)의 일치하는 레코드를 반환한다.- 일치하는 항목이 없는 경우 왼쪽에서 레코드를 가져오지 않는다.
2. Syntax
Demo Database
- 다음은 Northwind 샘플 데이터베이스의
Orders
테이블이다.
- 다음은 Northwind 샘플 데이터베이스의
Employees
테이블이다.
3. RIGHT JOIN
Example
- 다음은 모든 직원과 직원이 내린 모든 주문을 선택한다.
SELECT Orders.OrderID, Employees.LastName, Employees.FirstName
FROM Orders
RIGHT JOIN Employees
ON Orders.EmployeeID = Employees.EmployeeID
ORDER BY Orders.OrderID;