Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
summaryrefslogtreecommitdiff
path: root/doc/FAQ
diff options
context:
space:
mode:
authorBruce Momjian2007-10-09 03:20:09 +0000
committerBruce Momjian2007-10-09 03:20:09 +0000
commit30b6622ecc3019108a847ac7c9b0e4b3c2da59e6 (patch)
tree931fdaf1fa073c444521c649ca54cca480d33639 /doc/FAQ
parentfe385795a18a39e7a6c37cdd0ddb7421739b9f6a (diff)
Typo fix.
Euler Taveira de Oliveira
Diffstat (limited to 'doc/FAQ')
-rw-r--r--doc/FAQ16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/FAQ b/doc/FAQ
index 2cf44f9cefc..9b06e5ac5c9 100644
--- a/doc/FAQ
+++ b/doc/FAQ
@@ -1,7 +1,7 @@
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)
@@ -840,13 +840,13 @@
4.21) Why are my table and column names not recognized in my query? Why is
capitalization not preserved?
- The most common cause of recognized names is the use of double-quotes
- around table or column names during table creation. When double-quotes
- are used, table and column names (called identifiers) are stored
- case-sensitive, meaning you must use double-quotes when referencing
- the names in a query. Some interfaces, like pgAdmin, automatically
- double-quote identifiers during table creation. So, for identifiers to
- be recognized, you must either:
+ The most common cause of unrecognized names is the use of
+ double-quotes around table or column names during table creation. When
+ double-quotes are used, table and column names (called identifiers)
+ are stored case-sensitive, meaning you must use double-quotes when
+ referencing the names in a query. Some interfaces, like pgAdmin,
+ automatically double-quote identifiers during table creation. So, for
+ identifiers to be recognized, you must either:
* Avoid double-quoting identifiers when creating tables
* Use only lowercase characters in identifiers
* Double-quote identifiers when referencing them in queries