Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
f877cc34
Commit
f877cc34
authored
May 11, 2001
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update FAQ.
parent
1f7cb079
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
6 deletions
+19
-6
doc/FAQ
doc/FAQ
+17
-4
doc/src/FAQ/FAQ.html
doc/src/FAQ/FAQ.html
+2
-2
No files found.
doc/FAQ
View file @
f877cc34
Frequently Asked Questions (FAQ) for PostgreSQL
Frequently Asked Questions (FAQ) for PostgreSQL
Last updated: Thu
Apr 26 20:55:41
EDT 2001
Last updated: Thu
May 10 21:32:49
EDT 2001
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
...
@@ -74,7 +74,8 @@
...
@@ -74,7 +74,8 @@
4.11) What is an R-tree index?
4.11) What is an R-tree index?
4.12) What is the Genetic Query Optimizer?
4.12) What is the Genetic Query Optimizer?
4.13) How do I perform regular expression searches and
4.13) How do I perform regular expression searches and
case-insensitive regular expression searches?
case-insensitive regular expression searches? How do I use an index
for case-insensitive searches?
4.14) In a query, how do I detect if a field is NULL?
4.14) In a query, how do I detect if a field is NULL?
4.15) What is the difference between the various character types?
4.15) What is the difference between the various character types?
4.16.1) How do I create a serial/auto-incrementing field?
4.16.1) How do I create a serial/auto-incrementing field?
...
@@ -233,7 +234,7 @@
...
@@ -233,7 +234,7 @@
1.7) What is the latest release?
1.7) What is the latest release?
The latest release of PostgreSQL is version 7.1.
The latest release of PostgreSQL is version 7.1.
1.
We plan to have major releases every four months.
We plan to have major releases every four months.
...
@@ -751,12 +752,24 @@ Maximum number of indexes on a table? unlimited
...
@@ -751,12 +752,24 @@ Maximum number of indexes on a table? unlimited
join queries through nonexhaustive search.
join queries through nonexhaustive search.
4.13) How do I perform regular expression searches and case-insensitive
4.13) How do I perform regular expression searches and case-insensitive
regular expression searches?
regular expression searches? How do I use an index for case-insensitive
searches?
The ~ operator does regular expression matching, and ~* does
The ~ operator does regular expression matching, and ~* does
case-insensitive regular expression matching. The case-insensitive
case-insensitive regular expression matching. The case-insensitive
variant of LIKE is called ILIKE in PostgreSQL 7.1 and later.
variant of LIKE is called ILIKE in PostgreSQL 7.1 and later.
Case-insensitive equality comparisons are normally expressed as:
SELECT *
FROM tab
WHERE lower(col) = 'abc'
This will not use an standard index. However, if you create a
functional index, it will be used:
CREATE INDEX tabindex on tab (lower(col));
4.14) In a query, how do I detect if a field is NULL?
4.14) In a query, how do I detect if a field is NULL?
You test the column with IS NULLIS NOT NULL.
You test the column with IS NULLIS NOT NULL.
...
...
doc/src/FAQ/FAQ.html
View file @
f877cc34
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
alink=
"#0000FF"
>
alink=
"#0000FF"
>
<H1>
Frequently Asked Questions (FAQ) for PostgreSQL
</H1>
<H1>
Frequently Asked Questions (FAQ) for PostgreSQL
</H1>
<P>
Last updated: Thu
Apr 26 20:55:41
EDT 2001
</P>
<P>
Last updated: Thu
May 10 21:32:49
EDT 2001
</P>
<P>
Current maintainer: Bruce Momjian (
<A
href=
<P>
Current maintainer: Bruce Momjian (
<A
href=
"mailto:pgman@candle.pha.pa.us"
>
pgman@candle.pha.pa.us
</A>
)
<BR>
"mailto:pgman@candle.pha.pa.us"
>
pgman@candle.pha.pa.us
</A>
)
<BR>
...
@@ -312,7 +312,7 @@
...
@@ -312,7 +312,7 @@
<H4><A
name=
"1.7"
>
1.7
</A>
) What is the latest release?
</H4>
<H4><A
name=
"1.7"
>
1.7
</A>
) What is the latest release?
</H4>
<P>
The latest release of PostgreSQL is version 7.1.
</P>
<P>
The latest release of PostgreSQL is version 7.1.
1.
</P>
<P>
We plan to have major releases every four months.
</P>
<P>
We plan to have major releases every four months.
</P>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment