File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 98
98
</listitem>
99
99
</varlistentry>
100
100
101
+ <varlistentry>
102
+ <term><acronym>CTE</acronym></term>
103
+ <listitem>
104
+ <para>
105
+ <link linkend="queries-with">Common Table Expression</link>
106
+ </para>
107
+ </listitem>
108
+ </varlistentry>
109
+
101
110
<varlistentry>
102
111
<term><acronym>CVE</acronym></term>
103
112
<listitem>
Original file line number Diff line number Diff line change @@ -1516,7 +1516,7 @@ SELECT <replaceable>select_list</replaceable> FROM <replaceable>table_expression
1516
1516
1517
1517
1518
1518
<sect1 id="queries-with">
1519
- <title><literal>WITH</literal> Queries</title>
1519
+ <title><literal>WITH</literal> Queries (Common Table Expressions) </title>
1520
1520
1521
1521
<indexterm zone="queries-with">
1522
1522
<primary>WITH</primary>
@@ -1530,7 +1530,8 @@ SELECT <replaceable>select_list</replaceable> FROM <replaceable>table_expression
1530
1530
1531
1531
<para>
1532
1532
<literal>WITH</> provides a way to write subqueries for use in a larger
1533
- <literal>SELECT</> query. The subqueries can be thought of as defining
1533
+ <literal>SELECT</> query. The subqueries, which are often referred to as Common Table
1534
+ Expressions or <acronym>CTE</acronym>s, can be thought of as defining
1534
1535
temporary tables that exist just for this query. One use of this feature
1535
1536
is to break down complicated queries into simpler parts. An example is:
1536
1537
You can’t perform that action at this time.
0 commit comments