블로그는 나의 힘!
[ Programing ]/Database2011. 7. 26. 09:43

등가 조인 INNER JOIN 3-Way [등가 조인 특징 링크]

- n개의 테입르을 조인하려면 최소 n-1개의 조인 조건이 필요 하다.
- 3개의 테이블을 조인한다면 최소 2개의 조인 조건이 필요.
 


SELECT E.last_name, D.department_name, L.city
FROM employees E,
         departments D,
         locations L

WHERE E.department_id = D.department_id
          AND D.location_id = L.location_id;


 

Posted by Mister_Q