Commit 30b6622e authored by Bruce Momjian's avatar Bruce Momjian

Typo fix.

Euler Taveira de Oliveira
parent fe385795
Frequently Asked Questions (FAQ) for PostgreSQL Frequently Asked Questions (FAQ) for PostgreSQL
Last updated: Thu Sep 27 02:14:24 EDT 2007 Last updated: Mon Oct 8 23:19:46 EDT 2007
Current maintainer: Bruce Momjian (bruce@momjian.us) Current maintainer: Bruce Momjian (bruce@momjian.us)
...@@ -840,13 +840,13 @@ ...@@ -840,13 +840,13 @@
4.21) Why are my table and column names not recognized in my query? Why is 4.21) Why are my table and column names not recognized in my query? Why is
capitalization not preserved? capitalization not preserved?
The most common cause of recognized names is the use of double-quotes The most common cause of unrecognized names is the use of
around table or column names during table creation. When double-quotes double-quotes around table or column names during table creation. When
are used, table and column names (called identifiers) are stored double-quotes are used, table and column names (called identifiers)
case-sensitive, meaning you must use double-quotes when referencing are stored case-sensitive, meaning you must use double-quotes when
the names in a query. Some interfaces, like pgAdmin, automatically referencing the names in a query. Some interfaces, like pgAdmin,
double-quote identifiers during table creation. So, for identifiers to automatically double-quote identifiers during table creation. So, for
be recognized, you must either: identifiers to be recognized, you must either:
* Avoid double-quoting identifiers when creating tables * Avoid double-quoting identifiers when creating tables
* Use only lowercase characters in identifiers * Use only lowercase characters in identifiers
* Double-quote identifiers when referencing them in queries * Double-quote identifiers when referencing them in queries
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,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 Sep 27 02:14:24 EDT 2007</P> <P>Last updated: Mon Oct 8 23:19:46 EDT 2007</P>
<P>Current maintainer: Bruce Momjian (<A href= <P>Current maintainer: Bruce Momjian (<A href=
"mailto:bruce@momjian.us">bruce@momjian.us</A>) "mailto:bruce@momjian.us">bruce@momjian.us</A>)
...@@ -1097,7 +1097,7 @@ length</TD></TR> ...@@ -1097,7 +1097,7 @@ length</TD></TR>
<H3 id="item4.21">4.21) Why are my table and column names not <H3 id="item4.21">4.21) Why are my table and column names not
recognized in my query? Why is capitalization not preserved?</H3> recognized in my query? Why is capitalization not preserved?</H3>
<P>The most common cause of recognized names is the use of <P>The most common cause of unrecognized names is the use of
double-quotes around table or column names during table creation. double-quotes around table or column names during table creation.
When double-quotes are used, table and column names (called When double-quotes are used, table and column names (called
identifiers) are stored <a identifiers) are stored <a
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment