此内容没有您所选择的语言版本。
B.4. The FROM Clause
The FROM clause contains a list of
TableReference
's.
NamedTable
- represents a single TableJoin
- has a left and rightTableReference
and information on the join between the itemsDerivedTable
- represents a table defined by an inlineQueryExpression
A list of
TableReference
are used by default, in the pushdown query when no outer joins are used. If an outer join is used anywhere in the join tree, there will be a tree of Join
s with a single root. This latter form is the ANSI perfered style. If you wish all pushdown queries containing joins to be in ANSI style have the capability "useAnsiJoin" return true. Refer to the section on command form for more information.