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
b3fe924f
Commit
b3fe924f
authored
Sep 12, 2000
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update FAQ.
parent
8e953214
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
doc/FAQ
doc/FAQ
+1
-1
doc/src/FAQ/FAQ.html
doc/src/FAQ/FAQ.html
+1
-1
No files found.
doc/FAQ
View file @
b3fe924f
...
@@ -958,7 +958,7 @@ BYTEA bytea variable-length array of bytes
...
@@ -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?
4.22) How do I create a column that will default to the current time?
Use now():
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?
4.23) Why are my subqueries using IN so slow?
...
...
doc/src/FAQ/FAQ.html
View file @
b3fe924f
...
@@ -1166,7 +1166,7 @@ If you are using a client interface like ODBC you may need to set
...
@@ -1166,7 +1166,7 @@ If you are using a client interface like ODBC you may need to set
current time?
<BR></H4><P>
current time?
<BR></H4><P>
Use
<i>
now()
</i>
:
Use
<i>
now()
</i>
:
<CODE><PRE>
<CODE><PRE>
CREATE TABLE test (x int, modtime timestamp
default
now() );
CREATE TABLE test (x int, modtime timestamp
DEFAULT
now() );
</PRE></CODE>
</PRE></CODE>
<P>
<P>
<H4><A
NAME=
"4.23"
>
4.23
</A>
) Why are my subqueries using
<H4><A
NAME=
"4.23"
>
4.23
</A>
) Why are my subqueries using
...
...
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