diff --git a/doc/src/sgml/acronyms.sgml b/doc/src/sgml/acronyms.sgml
index 64efd323955..0e2b1bcc35d 100644
--- a/doc/src/sgml/acronyms.sgml
+++ b/doc/src/sgml/acronyms.sgml
@@ -98,6 +98,15 @@
+
+ CTE
+
+
+ Common Table Expression
+
+
+
+
CVE
diff --git a/doc/src/sgml/queries.sgml b/doc/src/sgml/queries.sgml
index 21a3a8d1a6c..e54de756dc5 100644
--- a/doc/src/sgml/queries.sgml
+++ b/doc/src/sgml/queries.sgml
@@ -1526,7 +1526,7 @@ SELECT select_list FROM table_expression
- WITH Queries
+ WITH Queries (Common Table Expressions)WITH
@@ -1540,7 +1540,8 @@ SELECT select_list FROM table_expression
WITH> provides a way to write subqueries for use in a larger
- SELECT> query. The subqueries can be thought of as defining
+ SELECT> 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: