Joining Multiple Tables |
||||||
Joining Multiple TablesA three-way join is a join of three tables. You can join as many tables as needed to retrieve information. For example, you might want to find employees, their employment history, and the department names for those employees. This requires accessing three tables:- EMP, EMPHIST, and DEPT. In the FROM clause, you identify the tables you want to join.
Example
Write SQL which shows employment history of employee Jonathon Taylor
|
||||||