mirror of
https://github.com/postgres/postgres.git
synced 2025-08-28 18:48:04 +03:00
Convert documentation to DocBook XML
Since some preparation work had already been done, the only source changes left were changing empty-element tags like <xref linkend="foo"> to <xref linkend="foo"/>, and changing the DOCTYPE. The source files are still named *.sgml, but they are actually XML files now. Renaming could be considered later. In the build system, the intermediate step to convert from SGML to XML is removed. Everything is build straight from the source files again. The OpenSP (or the old SP) package is no longer needed. The documentation toolchain instructions are updated and are much simpler now. Peter Eisentraut, Alexander Lakhin, Jürgen Purtz
This commit is contained in:
@@ -41,7 +41,7 @@ DELETE FROM [ ONLY ] <replaceable class="parameter">table_name</replaceable> [ *
|
||||
|
||||
<tip>
|
||||
<para>
|
||||
<xref linkend="sql-truncate"> provides a
|
||||
<xref linkend="sql-truncate"/> provides a
|
||||
faster mechanism to remove all rows from a table.
|
||||
</para>
|
||||
</tip>
|
||||
@@ -82,7 +82,7 @@ DELETE FROM [ ONLY ] <replaceable class="parameter">table_name</replaceable> [ *
|
||||
<para>
|
||||
The <literal>WITH</literal> clause allows you to specify one or more
|
||||
subqueries that can be referenced by name in the <command>DELETE</command>
|
||||
query. See <xref linkend="queries-with"> and <xref linkend="sql-select">
|
||||
query. See <xref linkend="queries-with"/> and <xref linkend="sql-select"/>
|
||||
for details.
|
||||
</para>
|
||||
</listitem>
|
||||
@@ -123,7 +123,7 @@ DELETE FROM [ ONLY ] <replaceable class="parameter">table_name</replaceable> [ *
|
||||
A list of table expressions, allowing columns from other tables
|
||||
to appear in the <literal>WHERE</literal> condition. This is similar
|
||||
to the list of tables that can be specified in the <xref
|
||||
linkend="sql-from" endterm="sql-from-title"> of a
|
||||
linkend="sql-from" endterm="sql-from-title"/> of a
|
||||
<command>SELECT</command> statement; for example, an alias for
|
||||
the table name can be specified. Do not repeat the target table
|
||||
in the <replaceable class="parameter">using_list</replaceable>,
|
||||
@@ -153,7 +153,7 @@ DELETE FROM [ ONLY ] <replaceable class="parameter">table_name</replaceable> [ *
|
||||
query on the <command>DELETE</command>'s target table.
|
||||
Note that <literal>WHERE CURRENT OF</literal> cannot be
|
||||
specified together with a Boolean condition. See
|
||||
<xref linkend="sql-declare">
|
||||
<xref linkend="sql-declare"/>
|
||||
for more information about using cursors with
|
||||
<literal>WHERE CURRENT OF</literal>.
|
||||
</para>
|
||||
@@ -283,7 +283,7 @@ DELETE FROM tasks WHERE CURRENT OF c_tasks;
|
||||
<title>See Also</title>
|
||||
|
||||
<simplelist type="inline">
|
||||
<member><xref linkend="sql-truncate"></member>
|
||||
<member><xref linkend="sql-truncate"/></member>
|
||||
</simplelist>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
Reference in New Issue
Block a user