Name of a joined user base table or view.
You can create views that reference global temporary tables and volatile tables.
A view can reference a global temporary trace table but such a view is not updatable. See CREATE GLOBAL TEMPORARY TRACE TABLE.
You cannot create a view on a queue table. See CREATE TABLE (Queue Table Form).
- INNER
- A join in which qualifying rows from one table are combined with qualifying rows from another table according to a specified join condition.
- OUTER
- A join in which qualifying rows from one table or view that do not have matches in the other table or view, are included in the join result. The rows from the outer table or view are extended with nulls.
- LEFT OUTER
- An outer join on the table or view that was listed first in the FROM clause.
- RIGHT OUTER
- An outer join on the table or view that was listed second in the FROM clause.
- FULL OUTER
- A join that returns rows, including non-qualifying rows, from both tables or views.