Class TCTE

All Implemented Interfaces:
IRelation, Visitable, Iterator<TSourceToken>

public class TCTE extends TTable
A common table expression permits defining a result table with a table-name that can be specified as a table name in any FROM clause of the fullselect that follows.

Multiple common table expressions can be specified following the single WITH keyword.

Each common table expression specified can also be referenced by name in the FROM clause of subsequent common table expressions.

Syntax:

 table-name [column-name [,...n]] AS (fullselect)