October 2002
Beginner
864 pages
18h 41m
English
| 1: | How many rows would a two-table join produce without a condition in the WHERE clause if one table had 50,000 rows and the other had 100? |
| A1: | 5,000,000. |
| 2: | What type of join appears in the following SELECT statement?
select e.name, e.employee_id, ep.salary
from employee_tbl e,
employee_pay_tbl ep
where e.employee_id = ep.employee_id;
|
| A2: | An equi-join. |
| 3: | Will the following SELECT statements work?
|
Read now
Unlock full access