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
276a8f4e
Commit
276a8f4e
authored
Jul 03, 2010
by
Robert Haas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Additional cross-references to window functions documentation.
Erik Rijkers
parent
97301ab1
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
5 deletions
+8
-5
doc/src/sgml/advanced.sgml
doc/src/sgml/advanced.sgml
+2
-1
doc/src/sgml/queries.sgml
doc/src/sgml/queries.sgml
+3
-2
doc/src/sgml/syntax.sgml
doc/src/sgml/syntax.sgml
+3
-2
No files found.
doc/src/sgml/advanced.sgml
View file @
276a8f4e
<!-- $PostgreSQL: pgsql/doc/src/sgml/advanced.sgml,v 1.6
0 2010/04/03 07:22:52 petere
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/advanced.sgml,v 1.6
1 2010/07/03 02:57:46 rhaas
Exp $ -->
<chapter id="tutorial-advanced">
<chapter id="tutorial-advanced">
<title>Advanced Features</title>
<title>Advanced Features</title>
...
@@ -554,6 +554,7 @@ SELECT sum(salary) OVER w, avg(salary) OVER w
...
@@ -554,6 +554,7 @@ SELECT sum(salary) OVER w, avg(salary) OVER w
<para>
<para>
More details about window functions can be found in
More details about window functions can be found in
<xref linkend="syntax-window-functions">,
<xref linkend="syntax-window-functions">,
<xref linkend="functions-window">,
<xref linkend="queries-window">, and the
<xref linkend="queries-window">, and the
<xref linkend="sql-select"> reference page.
<xref linkend="sql-select"> reference page.
</para>
</para>
...
...
doc/src/sgml/queries.sgml
View file @
276a8f4e
<!-- $PostgreSQL: pgsql/doc/src/sgml/queries.sgml,v 1.5
7 2010/04/03 07:22:55 petere
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/queries.sgml,v 1.5
8 2010/07/03 02:57:46 rhaas
Exp $ -->
<chapter id="queries">
<chapter id="queries">
<title>Queries</title>
<title>Queries</title>
...
@@ -979,7 +979,8 @@ SELECT product_id, p.name, (sum(s.units) * (p.price - p.cost)) AS profit
...
@@ -979,7 +979,8 @@ SELECT product_id, p.name, (sum(s.units) * (p.price - p.cost)) AS profit
<para>
<para>
If the query contains any window functions (see
If the query contains any window functions (see
<xref linkend="tutorial-window"> and
<xref linkend="tutorial-window">,
<xref linkend="functions-window"> and
<xref linkend="syntax-window-functions">), these functions are evaluated
<xref linkend="syntax-window-functions">), these functions are evaluated
after any grouping, aggregation, and <literal>HAVING</> filtering is
after any grouping, aggregation, and <literal>HAVING</> filtering is
performed. That is, if the query uses any aggregates, <literal>GROUP
performed. That is, if the query uses any aggregates, <literal>GROUP
...
...
doc/src/sgml/syntax.sgml
View file @
276a8f4e
<!-- $PostgreSQL: pgsql/doc/src/sgml/syntax.sgml,v 1.14
6 2010/06/09 16:43:47 alvherre
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/syntax.sgml,v 1.14
7 2010/07/03 02:57:46 rhaas
Exp $ -->
<chapter id="sql-syntax">
<chapter id="sql-syntax">
<title>SQL Syntax</title>
<title>SQL Syntax</title>
...
@@ -1761,7 +1761,8 @@ UNBOUNDED FOLLOWING
...
@@ -1761,7 +1761,8 @@ UNBOUNDED FOLLOWING
<para>
<para>
More information about window functions can be found in
More information about window functions can be found in
<xref linkend="tutorial-window"> and
<xref linkend="tutorial-window">,
<xref linkend="functions-window">,
<xref linkend="queries-window">.
<xref linkend="queries-window">.
</para>
</para>
</sect2>
</sect2>
...
...
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