diff --git a/doc/src/sgml/acronyms.sgml b/doc/src/sgml/acronyms.sgml
index 23ab3b410bd..5dad0db1378 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 f6e081ea732..693fce531f4 100644
--- a/doc/src/sgml/queries.sgml
+++ b/doc/src/sgml/queries.sgml
@@ -1525,7 +1525,7 @@ SELECT select_list FROM table_expression
- WITH Queries
+ WITH Queries (Common Table Expressions)WITH
@@ -1539,7 +1539,8 @@ 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
+ 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: