1절 ✔️
Join operation
condition을 만족하는 놈들만 살아남는다. 근데 condition을 하나도 만족하지 못하는 row들이 있을 수 있다. 그렇다면 이 row들은 아예 없어지냐? 어떻게 할지 정할 수 있다.
ON clause
- “온콘”
- an explicit join clause (acts like a where clause)
USING clause
- columns listed must be present in both of the two tables being joined
- specifies which columns to test for equality
NATURAL JOIN
- 동일한 이름을 갖는 attribute 모두에 대하여 equality test를 함.
- 조심해서 사용해야됨
inner join
left outer join
right outer join
full outer join
2절