Contents Index Key joins of lists and table expressions that do not contain commas Rules describing the operation of key joins

ASA SQL User's Guide
  Joins: Retrieving Data from Several Tables
    Key joins

Key joins of views and derived tables


When you include a view or derived table in a key join, Adaptive Server Anywhere follows the same basic procedure as with tables, but with these differences:

A derived table works identically to a view. The only difference is that instead of referencing a predefined view, the definition for the table is included in the statement.

Example 1 

For example, in the following statement, View1 is a view.

SELECT *
FROM View1 KEY JOIN B

The definition of View1 can be any of the following and result in the same join condition to B. (The result set will differ, but the join conditions will be identical.)

SELECT *
FROM C CROSS JOIN D

or

SELECT *
FROM C,D

or

SELECT *
FROM C JOIN D ON (C.x = D.y)

In each case, to generate a join condition for the key join of View1 and B, Adaptive Server Anywhere considers the table-pairs C-B and D-B, and generates a single join condition. It generates the join condition based on the rules for multiple foreign key relationships described in Key joins of table expressions, except that it looks for a foreign key with the same name as the correlation name of the view (rather than a table referenced in the view).

Using any of the view definitions above, you can interpret the processing of View1 KEY JOIN B as follows:

Adaptive Server Anywhere generates a single join condition by considering the table-pairs C-B and D-B. It generates the join condition according to the rules for determining key joins when there are multiple foreign key relationships:

Assume this generated join condition is B.y    =    D.z. We can now expand the original join.

SELECT *
FROM View1 KEY JOIN B

is equivalent to

SELECT *
FROM View1 JOIN B ON B.y = View1.z

For more information, see Key joins when there are multiple foreign key relationships.

Example 2 

The following view contains all the employee information about the manager of each department.

CREATE VIEW V AS
SELECT department.dept_name, employee.*
FROM employee JOIN department
  ON employee.emp_id = department.dept_head_id

The following query joins the view to a table expression.

SELECT *
FROM V KEY JOIN (sales_order, department ky_dept_id)

This is equivalent to

SELECT *
FROM V JOIN (sales_order, department ky_dept_id)
ON (V.emp_id = sales_order.sales_rep
AND V.dept_id = ky_dept_id.dept_id)

Contents Index Key joins of lists and table expressions that do not contain commas Rules describing the operation of key joins