Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 3debf96

Browse files
committed
Fix markup.
1 parent 026a851 commit 3debf96

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

doc/FAQ

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Frequently Asked Questions (FAQ) for PostgreSQL
33

4-
Last updated: Thu Feb 24 19:32:04 EST 2005
4+
Last updated: Thu Feb 24 19:33:07 EST 2005
55

66
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
77

@@ -645,10 +645,10 @@
645645
FROM tab
646646
WHERE col IS NULL;
647647

648-
To sort by the NULLIS NULL
649-
and IS NOT NULL modifiers in your WHERE clause. Things that are true
650-
will sort higher than things that are false, so the following will put
651-
NULL entries at the top of the resulting list:
648+
To sort by the NULL status, use the IS NULL and IS NOT NULL modifiers
649+
in your WHERE clause. Things that are true will sort higher than
650+
things that are false, so the following will put NULL entries at the
651+
top of the resulting list:
652652
SELECT *
653653
FROM tab
654654
ORDER BY (col IS NOT NULL)

doc/src/FAQ/FAQ.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
alink="#0000ff">
1111
<H1>Frequently Asked Questions (FAQ) for PostgreSQL</H1>
1212

13-
<P>Last updated: Thu Feb 24 19:32:04 EST 2005</P>
13+
<P>Last updated: Thu Feb 24 19:33:07 EST 2005</P>
1414

1515
<P>Current maintainer: Bruce Momjian (<A href=
1616
"mailto:pgman@candle.pha.pa.us">pgman@candle.pha.pa.us</A>)
@@ -828,7 +828,7 @@ <H4><A name="4.9">4.9</A>) In a query, how do I detect if a field
828828
WHERE col IS NULL;
829829
</PRE>
830830

831-
<P>To sort by the <SMALL>NULL</SMALL status, use the <SMALL>IS NULL</SMALL>
831+
<P>To sort by the <SMALL>NULL</SMALL> status, use the <SMALL>IS NULL</SMALL>
832832
and <SMALL>IS NOT NULL</SMALL> modifiers in your <SMALL>WHERE</SMALL> clause.
833833
Things that are <I>true</I> will sort higher than things that are <I>false</I>,
834834
so the following will put NULL entries at the top of the resulting list:</P>

0 commit comments

Comments
 (0)