Common table expression
WITH [RECURSIVE] cte-table-name AS ( select-stmt )[,...] primary-select-stmt
What are Common Table Expressions?
Common table expressions ("CTEs") act like temporary views that exist only for the duration of a single ECSQL statement. There are two types of CTE:
Ordinary Common Table Expressions
This is mainly used to factor out subqueries, making the overall ECSQL statement easier to read and understand. It contains just a SELECT
statement with or without RECURSIVE
keyword.
Recursive Common Table Expressions
A recursive common table expression can be used to walk a tree or graph. It is of the following form:
cte-table-name AS ( initial-select) UNION [ALL] recursive-select)
Here is a simple example of how we can write a CTE. In the following query we want to generate a sequence from 1 through 5. We start with an initial value of x = 1 and then recursively do x+1 until the value of x is less then 6.
As another example, we might want to traverse a class hierarchy starting from a base class down to all derived classes, generating a row for each class. Each row should could contain 2 columns: the depth of the derived class relative to the base class and a path string describing its relationship to the base class. Using BisCore:GeometricElement2d
as the base class produces the following ECSQL and resultant output:
Last Updated: 02 February, 2022