- A join condition is omitted
- A join condition is invalid
- All rows in the first table are joined to all rows in the second table
select count(*) from employees;
select count(*) from departments;
select last_name, department_name
from employees
cross join departments;
160 개의 행이 선택되었습니다.
↓ ↓
<Oracle Syntax>
select last_name, department_name
from employees, departments;
'Oracle > SQL Fundamentals I' 카테고리의 다른 글
9일차 문제 누적합 구하기 (0) | 2012.04.16 |
---|---|
9일차 퀴즈~ (0) | 2012.04.16 |
8일차 # 5-25: FULL OUTER JOIN (0) | 2012.04.13 |
8일차 # 5-24: RIGHT OUTER JOIN (0) | 2012.04.13 |
8일차 # 5-23: LEFT OUTER JOIN (0) | 2012.04.13 |