File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -1867,10 +1867,11 @@ named windows using the ``window()`` method::
18671867Common Table Expressions
18681868------------------------
18691869
1870- Common Table Expressions or CTE are useful when building reporting queries where
1871- you need to compose the results of several smaller query results together. They
1872- can serve a similar purpose to database views or subquery results. Common Table
1873- Expressions differ from derived tables and views in a couple ways:
1870+ `Common Table Expressions or CTE <https://en.wikipedia.org/wiki/Hierarchical_and_recursive_queries_in_SQL#Common_table_expression >`__
1871+ are useful when building reporting queries where you need to compose the results
1872+ of several smaller query results together. They can serve a similar purpose
1873+ to database views or subquery results. Common Table Expressions differ from
1874+ derived tables and views in a couple ways:
18741875
18751876#. Unlike views, you don't have to maintain schema for common table expressions.
18761877 The schema is implicitly based on the result set of the table expression.
You can’t perform that action at this time.
0 commit comments