aboutsummaryrefslogtreecommitdiff
path: root/doc/src/sgml/dml.sgml
diff options
context:
space:
mode:
Diffstat (limited to 'doc/src/sgml/dml.sgml')
-rw-r--r--doc/src/sgml/dml.sgml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/dml.sgml b/doc/src/sgml/dml.sgml
index 53eeea49aa6..05d31a95fc5 100644
--- a/doc/src/sgml/dml.sgml
+++ b/doc/src/sgml/dml.sgml
@@ -1,4 +1,4 @@
-<!-- $PostgreSQL: pgsql/doc/src/sgml/dml.sgml,v 1.9 2004/12/23 05:37:39 tgl Exp $ -->
+<!-- $PostgreSQL: pgsql/doc/src/sgml/dml.sgml,v 1.9.4.1 2005/01/22 23:05:47 momjian Exp $ -->
<chapter id="dml">
<title>Data Manipulation</title>
@@ -191,7 +191,7 @@ UPDATE products SET price = price * 1.10;
<literal>UPDATE</literal> command by listing more than one
assignment in the <literal>SET</literal> clause. For example:
<programlisting>
-UPDATE mytable SET a = 5, b = 3, c = 1 WHERE a > 0;
+UPDATE mytable SET a = 5, b = 3, c = 1 WHERE a &gt; 0;
</programlisting>
</para>
</sect1>