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 9898 </listitem>
9999 </varlistentry>
100100
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+
101110 <varlistentry>
102111 <term><acronym>CVE</acronym></term>
103112 <listitem>
Original file line number Diff line number Diff line change @@ -1525,7 +1525,7 @@ SELECT <replaceable>select_list</replaceable> FROM <replaceable>table_expression
15251525
15261526
15271527 <sect1 id="queries-with">
1528- <title><literal>WITH</literal> Queries</title>
1528+ <title><literal>WITH</literal> Queries (Common Table Expressions) </title>
15291529
15301530 <indexterm zone="queries-with">
15311531 <primary>WITH</primary>
@@ -1539,7 +1539,8 @@ SELECT <replaceable>select_list</replaceable> FROM <replaceable>table_expression
15391539
15401540 <para>
15411541 <literal>WITH</> provides a way to write subqueries for use in a larger
1542- query. The subqueries can be thought of as defining
1542+ query. The subqueries, which are often referred to as Common Table
1543+ Expressions or <acronym>CTE</acronym>s, can be thought of as defining
15431544 temporary tables that exist just for this query. One use of this feature
15441545 is to break down complicated queries into simpler parts. An example is:
15451546
You can’t perform that action at this time.
0 commit comments