Monday 8 July 2019

NTILE Function in SQL server


The NTILE function is considered to be a ranking function, but with a twist. The numbers applied are used to divide the results into equal buckets. We must specify how many buckets are needed and an ORDER BY expression is required in the OVER clause. Here is the syntax for NTILE:
NTILE(<buckets>) OVER([PARTITION BY <col1>[,<col2>,...<n>]]
ORDER BY <col3>[,<col4>])
Within the parentheses after the word NTILE, supply the number of buckets. The PARTITION BY is optional, and the ORDER BY is required.
SQL script
WITH Orders AS (
SELECT MONTH(OrderDate) AS OrderMonth,
FORMAT(SUM(TotalDue),'C') AS Sales
FROM Sales.SalesOrderHeader
WHERE OrderDate >= '2013/01/01' and OrderDate < '2014/01/01'
GROUP BY MONTH(OrderDate))
SELECT OrderMonth, Sales, NTILE(4) OVER(ORDER BY Sales) AS Bucket
FROM Orders;
See the result    
The query aggregates the sales from 2013 into months inside a CTE called Orders. In the outer query, the NTILE the function is applied. The bucket that each month falls into depends on the sales for that month. Bucket #1 contains three months with the lowest sales. Bucket #4 contains three months with the highest sales.

No comments:

Post a Comment

If you have any doubt, please let me know.

Popular Posts