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
6b704bf5
Commit
6b704bf5
authored
22 years ago
by
Tom Lane
Browse files
Options
Downloads
Patches
Plain Diff
Add note about sort order of character datatypes being locale-dependent,
per suggestion from Nicolaus Erichsen.
parent
3a0fde3b
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/src/sgml/ref/select.sgml
+8
-2
8 additions, 2 deletions
doc/src/sgml/ref/select.sgml
with
8 additions
and
2 deletions
doc/src/sgml/ref/select.sgml
+
8
−
2
View file @
6b704bf5
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/select.sgml,v 1.6
2
2002/10/
18 18:26:22
tgl Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/select.sgml,v 1.6
3
2002/10/
24 21:19:15
tgl Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -618,7 +618,7 @@ ORDER BY <replaceable class="PARAMETER">expression</replaceable> [ ASC | DESC |
...
@@ -618,7 +618,7 @@ ORDER BY <replaceable class="PARAMETER">expression</replaceable> [ ASC | DESC |
<para>
<para>
The ordinal number refers to the ordinal (left-to-right) position
The ordinal number refers to the ordinal (left-to-right) position
of the result column. This feature makes it possible to define an ordering
of the result column. This feature makes it possible to define an ordering
on the basis of a column that does not have a
proper
name.
on the basis of a column that does not have a
unique
name.
This is never absolutely necessary because it is always possible
This is never absolutely necessary because it is always possible
to assign a name to a result column using the AS clause, e.g.:
to assign a name to a result column using the AS clause, e.g.:
<programlisting>
<programlisting>
...
@@ -663,6 +663,12 @@ SELECT name FROM distributors ORDER BY code;
...
@@ -663,6 +663,12 @@ SELECT name FROM distributors ORDER BY code;
descending sort order nulls sort at the beginning.
descending sort order nulls sort at the beginning.
</para>
</para>
<para>
Data of character types is sorted according to the locale-specific
collation order that was established when the database cluster
was initialized.
</para>
</refsect2>
</refsect2>
<refsect2 id="SQL-UNION">
<refsect2 id="SQL-UNION">
...
...
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