What is the meaning of the OVER clause in Oracle?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The OVER clause specifies the partitioning, ordering & window "over which" the analytic function operates. For example, this calculates a moving average:
It operates over a moving window (3 rows wide) over the rows, ordered by date. This calculates a running balance:
It operates over a window that includes the current row and all prior rows. This calculates the maximum, separately for each "dept":
It operates over a window that includes all rows for a particular dept. |
|||
|
|
|
It's part of the Oracle analytic functions. |
|||
|
|
|
You can use it to transform some aggregate functions into analytic:
will return
will return all rows with a running maximum. |
|||
|
|