*** a/doc/src/sgml/acronyms.sgml --- b/doc/src/sgml/acronyms.sgml *************** *** 99,104 **** --- 99,113 ---- + CTE + + + Common Table Expression + + + + + CVE *** a/doc/src/sgml/queries.sgml --- b/doc/src/sgml/queries.sgml *************** *** 1525,1531 **** SELECT select_list FROM table_expression ! <literal>WITH</literal> Queries WITH --- 1525,1531 ---- ! <literal>WITH</literal> Queries (Common Table Expressions) WITH *************** *** 1539,1545 **** SELECT select_list FROM table_expression WITH provides a way to write subqueries for use in a larger ! query. The subqueries can be thought of as defining temporary tables that exist just for this query. One use of this feature is to break down complicated queries into simpler parts. An example is: --- 1539,1546 ---- WITH provides a way to write subqueries for use in a larger ! query. The subqueries, which are often referred to as Common Table ! Expressions or CTEs, can be thought of as defining temporary tables that exist just for this query. One use of this feature is to break down complicated queries into simpler parts. An example is: