Welcome back to the world of window functions.

Window functions are closely related to aggregate functions. But rather than collapsing all the rows we want into one row, we keep them and add a new column with a running total, rank or moving average. This becomes our ‘window frame.’

It becomes clearer with examples and pictures, so if you’re interested in using this powerful tool, keep reading.


Introduction
Setting the scene
Bucket rows into groups
Access a total from an earlier row
Use window functions to perform calculations


Introduction

Window functions come in three main types. These are:

Aggregate window functions
These use aggregate functions like SUM, COUNT, MAX, MIN over a set of rows and return a single result from the query.

Ranking window functions
These assign a ‘rank’ to a set of rows and using RANK, DENSE_RANK, ROW_NUMBER, NTILE

Value window functions
These use LAG, LEAD, FIRST_VALUE, LAST_VALUE to access a previous row without having to do a self join.


Setting the Scene

This post is picking up where we left off in part one, where we used window functions to answer questions from a sales manager who is setting targets for the year.

In the last post we covered aggregate window functions and how to use RANK(). In this post, we’ll be exploring how to use NTILE(), then exploring how we can use value window functions to answer questions using sales data.


sql window functions
The raw Sales Order table, not much use to your Sales Manager

Bucket rows into groups

When we left her in the last post we had provided the sales manager with two tables. One showing daily sales with a running total, and all sales ranked by their dollar value.

This time the sales manager would like to give a bonus to the territory who has bought in the top 25% of customers over the last year.

To do this we can use NTILE() to bucket the dollar values into four groups that represent four quartiles. The buckets can be adjusted by changing the number in the brackets.

select
  territoryid,
  customerid,
  sum(subtotal) as subtotal,
  ntile(4) over(order by sum(subtotal)) as bucket
from 
  sales.salesorderheader 
where sales_date between 
'2018-01-01' and '2019-01-01'
group by 
  territoryid, 
  customerid

sql window functions

Access a total from an earlier row

The sales manager needs one last thing before the targets for next year can be locked in. A table that shows the ‘big customers’ identified earlier and the dates they are making orders.

What the sales manager needs for this last piece of work is an idea of how many days there are between orders for these big customers. If she can anticipate when they are going to buy next we can get in touch with them earlier.

By using LAG() we are able to reach up and return the result from the previous row and add it to a new column. LEAD() works in the same way but in reverse.

select
  customerid, 
  subtotal, 
  sale_date,
  lag(sale_date) over(order by sale_date) as last_order,
from sales.salesorderheader 
where 
  customerid = 11078
  and sale_date between 
'2018-01-01' and '2019-01-01'

sql window functions

Use window functions to perform calculations

To make this useful for the sales manager we can use CAST and a new column to calculate the difference between the dates.

select
  customerid, 
  subtotal, 
  sale_date,
  lag(sale_date) over(order by sale_date) as last_order,
  cast(sale_date - (lag(sale_date) 
over(order by sale_date)) as int) as days_between
from sales.salesorderheader 
where 
  customerid = 11078
  and sale_date between '2018-01-01' and '2019-01-01'

sql server window functions

I hope you’ve enjoyed these two posts on SQL Window Functions. How do you use these in your work? Do you find them a useful and powerful tool?


Photo by Tatiana from Pexels