diff options
author | Bruce Momjian <bruce@momjian.us> | 2000-09-12 15:47:20 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2000-09-12 15:47:20 +0000 |
commit | b3fe924f2f6063daf2c0bc0c34658d8e89ee441c (patch) | |
tree | 6acd6aff51e3e0497932992a445343789f7fc6b8 | |
parent | 8e95321476a446c70e976eb1096b457eb909dc7a (diff) | |
download | postgresql-b3fe924f2f6063daf2c0bc0c34658d8e89ee441c.tar.gz postgresql-b3fe924f2f6063daf2c0bc0c34658d8e89ee441c.zip |
Update FAQ.
-rw-r--r-- | doc/FAQ | 2 | ||||
-rw-r--r-- | doc/src/FAQ/FAQ.html | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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? diff --git a/doc/src/FAQ/FAQ.html b/doc/src/FAQ/FAQ.html index 4fb0626d96e..5a428536bcd 100644 --- a/doc/src/FAQ/FAQ.html +++ b/doc/src/FAQ/FAQ.html @@ -1166,7 +1166,7 @@ If you are using a client interface like ODBC you may need to set current time?<BR></H4><P> Use <i>now()</i>: <CODE><PRE> - CREATE TABLE test (x int, modtime timestamp default now() ); + CREATE TABLE test (x int, modtime timestamp DEFAULT now() ); </PRE></CODE> <P> <H4><A NAME="4.23">4.23</A>) Why are my subqueries using |