1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-05 09:19:17 +03:00

Emphasize where OVER needs to be when using a window function.

Jeff Turner
This commit is contained in:
Robert Haas 2011-01-21 12:57:49 -05:00
parent 5925aa09a9
commit d3b372e92d

View File

@ -371,7 +371,7 @@ SELECT depname, empno, salary, avg(salary) OVER (PARTITION BY depname) FROM emps
<para> <para>
A window function call always contains an <literal>OVER</> clause A window function call always contains an <literal>OVER</> clause
following the window function's name and argument(s). This is what directly following the window function's name and argument(s). This is what
syntactically distinguishes it from a regular function or aggregate syntactically distinguishes it from a regular function or aggregate
function. The <literal>OVER</> clause determines exactly how the function. The <literal>OVER</> clause determines exactly how the
rows of the query are split up for processing by the window function. rows of the query are split up for processing by the window function.