Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
b3fe924f
Commit
b3fe924f
authored
24 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Update FAQ.
parent
8e953214
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/FAQ
+1
-1
1 addition, 1 deletion
doc/FAQ
doc/src/FAQ/FAQ.html
+1
-1
1 addition, 1 deletion
doc/src/FAQ/FAQ.html
with
2 additions
and
2 deletions
doc/FAQ
+
1
−
1
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?
...
...
This diff is collapsed.
Click to expand it.
doc/src/FAQ/FAQ.html
+
1
−
1
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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment