E Computer Notes - From Multiple Tables
E Computer Notes - From Multiple Tables
http://ecomputernotes.com
Objectives
After completing this lesson, you should be able to do the following:
"
"
Write SELECT statements to access data from more than one table using equality and nonequality joins View data that generally does not meet a join condition by using outer joins
http://ecomputernotes.com
http://ecomputernotes.com
http://ecomputernotes.com
http://ecomputernotes.com
Types of Joins
Oracle Proprietary Joins (8ii and prior): " " " "
Equijoin
Non-equijoin
Outer join Self join
http://ecomputernotes.com
WHERE
" "
Write the join condition in the WHERE clause. Prefix the column name with the table name when the same column name appears in more than one table.
http://ecomputernotes.com
What is an Equijoin?
EMPLOYEES DEPARTMENTS
Foreign
http://ecomputernotes.com
http://ecomputernotes.com
http://ecomputernotes.com
" Improve performance by using table prefixes. " Distinguish columns that have identical names but
reside in different tables by using column aliases.
http://ecomputernotes.com
SELECT e.employee_id, e.last_name, e.department_id, d.department_id, d.location_id FROM employees e , departments d WHERE e.department_id = d.department_id;
http://ecomputernotes.com
LOCATIONS
http://ecomputernotes.com
Non-Equijoins
EMPLOYEES
JOB_GRADES
Salary in the EMPLOYEES table must be between lowest salary and highest salary in the JOB_GRADES table.
http://ecomputernotes.com
http://ecomputernotes.com
Outer Joins
DEPARTMENTS
EMPLOYEES
http://ecomputernotes.com
http://ecomputernotes.com
SELECT e.last_name, e.department_id, d.department_name FROM employees e, departments d WHERE e.department_id(+) = d.department_id ;
http://ecomputernotes.com
Self Joins
EMPLOYEES (WORKER) EMPLOYEES (MANAGER)
http://ecomputernotes.com
http://ecomputernotes.com
http://ecomputernotes.com
[JOIN table2 USING (column_name)] | [JOIN table2 )] | ON(table1.column_name == table2.column_name)] | [LEFT|RIGHT|FULL OUTER JOIN table2 )]; ON (table1.column_name == table2.column_name)];
)] |
Creating Natural Joins "The NATURAL JOIN clause is based on all columns in the two tables that have the same name. "It selects
rows from the two tables that have equal values in all matched columns. "If the columns having the same names have different data types, an error is returned.
Creating Joins with the USING Clause "If several columns have the same names but the
data types do not match, the NATURAL JOIN clause can be modified with the USING clause to specify the columns that should be used for an equijoin. "Use the USING clause to match only one column when more than one column matches. "Do not use a table name or alias in the referenced columns.
SELECT e.employee_id, e.last_name, d.location_id FROM employees e JOIN departments d USING (department_id) ;
Creating Joins with the ON Clause "The join condition for the natural join is basically
an equijoin of all columns with the same name. "To specify arbitrary conditions or specify columns to join, the ON clause is used. "The join condition is separated from other search conditions. " The ON clause makes code easy to understand.
INNER Versus OUTER Joins "In SQL: 1999, the join of two tables returning only
matched rows is an inner join. "A join between two tables that returns the results of the inner join as well as unmatched rows left (or right) tables is a left (or right) outer join. "A join between two tables that returns the results of an inner join as well as the results of a left and right join is a full outer join.
Additional Conditions
SELECT e.employee_id, e.last_name, e.department_id, d.department_id, d.location_id FROM employees e JOIN departments d ON(e.department_id = d.department_id) AND e.manager_id = 149 ;