Common Table Expression
A common table expression, or CTE, is a set of query results obtained from a simple query specified within a WITH clause and which immediately precedes a SELECT or INSERT keyword. A CTE exists only within the scope of a single SQL statement. One or more CTEs can be used with the following SQL statements:
SELECT
INSERT
CREATE TABLE AS SELECT
CREATE VIEW AS SELECT
The following example demonstrates the use CTE in a SELECT statement:
The following example demonstrates the use of q1 as a CTE in an INSERT statement:
The following example demonstrates the use of ql as a CTE in a CREATE TABLE AS SELECT clause:
The following example demonstrates the use of q1 as a CTE in a CREATE TABLE AS VIEW clause:
Limitations
Common Table Expressions have the following limitations:
Recursive queries are not supported.
The WITH clause is not supported within subquery blocks.
Last updated