Update FAQ.
authorBruce Momjian
Tue, 12 Sep 2000 15:47:20 +0000 (15:47 +0000)
committerBruce Momjian
Tue, 12 Sep 2000 15:47:20 +0000 (15:47 +0000)
doc/FAQ
doc/src/FAQ/FAQ.html

diff --git a/doc/FAQ b/doc/FAQ
index 6ecfb7f23f267cd5e1e0260bdbdbedcf8e1061ce..8c4712281e3214b452337011327c74a7f1a61dab 100644 (file)
--- a/doc/FAQ
+++ b/doc/FAQ
@@ -958,7 +958,7 @@ BYTEA           bytea           variable-length array of bytes
     4.22) How do I create a column that will default to the current time?
     
    Use now():
-        CREATE TABLE test (x int, modtime timestamp default now() );
+        CREATE TABLE test (x int, modtime timestamp DEFAULT now() );
 
     4.23) Why are my subqueries using IN so slow?
     
index 4fb0626d96ea8057549e97fd06ba2c6f9f2dad0d..5a428536bcdb5d328d2c844335d1d80cae2ffc42 100644 (file)
@@ -1166,7 +1166,7 @@ If you are using a client interface like ODBC you may need to set
 current time?

 Use now():
 
-   CREATE TABLE test (x int, modtime timestamp default now() );
+   CREATE TABLE test (x int, modtime timestamp DEFAULT now() );
 
 

 

4.23) Why are my subqueries using