Window functions allow calculations across related table rows without grouping, retaining each row's identity, by accessing more rows than just the current row in a query result.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
19 views
Window Func
Window functions allow calculations across related table rows without grouping, retaining each row's identity, by accessing more rows than just the current row in a query result.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1
A window function performs a calculation across a set of table rows that are
somehow related to the
current row. This is comparable to the type of calculation that can be done with an aggregate function. However, window functions do not cause rows to become grouped into a single output row like non- window aggregate calls would. Instead, the rows retain their separate identities. Behind the scenes, the window function is able to access more than just the current row of the query result.