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
cdd43793
Commit
cdd43793
authored
23 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Update FAQ.
parent
08180738
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/FAQ
+7
-1
7 additions, 1 deletion
doc/FAQ
doc/src/FAQ/FAQ.html
+7
-1
7 additions, 1 deletion
doc/src/FAQ/FAQ.html
with
14 additions
and
2 deletions
doc/FAQ
+
7
−
1
View file @
cdd43793
Frequently Asked Questions (FAQ) for PostgreSQL
Frequently Asked Questions (FAQ) for PostgreSQL
Last updated:
Sat Sep 22 20:07:41
EDT 2001
Last updated:
Fri Oct 12 21:32:36
EDT 2001
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
...
@@ -790,6 +790,12 @@ BYTEA bytea variable-length byte array (null-safe)
...
@@ -790,6 +790,12 @@ BYTEA bytea variable-length byte array (null-safe)
data types are also subject to compression or being stored out-of-line
data types are also subject to compression or being stored out-of-line
by TOAST, so the space on disk might also be less than expected.
by TOAST, so the space on disk might also be less than expected.
CHAR() is best when storing strings that are usually the same length.
VARCHAR() is best when storing variable-length strings, but you want
to limit how long a string can be. TEXT is for strings of unlimited
length, maximum 1 gigabyte. BYTEA is for storing binary data,
particularly values that include NULL bytes.
4.16.1) How do I create a serial/auto-incrementing field?
4.16.1) How do I create a serial/auto-incrementing field?
PostgreSQL supports a SERIAL data type. It auto-creates a sequence and
PostgreSQL supports a SERIAL data type. It auto-creates a sequence and
...
...
This diff is collapsed.
Click to expand it.
doc/src/FAQ/FAQ.html
+
7
−
1
View file @
cdd43793
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
alink=
"#0000FF"
>
alink=
"#0000FF"
>
<H1>
Frequently Asked Questions (FAQ) for PostgreSQL
</H1>
<H1>
Frequently Asked Questions (FAQ) for PostgreSQL
</H1>
<P>
Last updated:
Sat Sep 22 20:07:41
EDT 2001
</P>
<P>
Last updated:
Fri Oct 12 21:32:36
EDT 2001
</P>
<P>
Current maintainer: Bruce Momjian (
<A
href=
<P>
Current maintainer: Bruce Momjian (
<A
href=
"mailto:pgman@candle.pha.pa.us"
>
pgman@candle.pha.pa.us
</A>
)
<BR>
"mailto:pgman@candle.pha.pa.us"
>
pgman@candle.pha.pa.us
</A>
)
<BR>
...
@@ -1003,6 +1003,12 @@ BYTEA bytea variable-length byte array (null-safe)
...
@@ -1003,6 +1003,12 @@ BYTEA bytea variable-length byte array (null-safe)
stored out-of-line by
<SMALL>
TOAST
</SMALL>
, so the space on disk
stored out-of-line by
<SMALL>
TOAST
</SMALL>
, so the space on disk
might also be less than expected.
</P>
might also be less than expected.
</P>
<P>
CHAR() is best when storing strings that are usually the
same length. VARCHAR() is best when storing variable-length strings,
but you want to limit how long a string can be. TEXT is for strings
of unlimited length, maximum 1 gigabyte. BYTEA is for storing
binary data, particularly values that include NULL bytes.
</P>
<H4><A
name=
"4.16.1"
>
4.16.1
</A>
) How do I create a
<H4><A
name=
"4.16.1"
>
4.16.1
</A>
) How do I create a
serial/auto-incrementing field?
</H4>
serial/auto-incrementing field?
</H4>
...
...
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