We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa09b6d commit 7e422acCopy full SHA for 7e422ac
doc/src/sgml/plsql.sgml
@@ -1,5 +1,5 @@
1
<!--
2
-$Header: /cvsroot/pgsql/doc/src/sgml/Attic/plsql.sgml,v 2.48 2001/11/15 23:32:39 tgl Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/Attic/plsql.sgml,v 2.49 2001/11/16 00:40:11 tgl Exp $
3
-->
4
5
<chapter id="plpgsql">
@@ -1184,9 +1184,9 @@ END IF;
1184
<programlisting>
1185
IF number = 0 THEN
1186
result := ''zero'';
1187
-ELSIF number < 0 THEN
1188
- result := ''positive'';
1189
ELSIF number > 0 THEN
+ result := ''positive'';
+ELSIF number < 0 THEN
1190
result := ''negative'';
1191
ELSE
1192
-- hmm, the only other possibility is that number IS NULL
0 commit comments