Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Windowed functions can only appear in the SELECT or ORDER BY clauses

Tags:

sql

sql-server

Can anyone explain why can't we use windowed functions in group by clause and why it's allowed only in SELECT and ORDER BY

I was trying to group the records based on row_number() and a column in SQL Server as like this:

SELECT Invoice from table1 group by row_number() over(order by Invoice),Invoice 

I am getting an error

Windowed functions can only appear in the SELECT or ORDER BY

I can select this row_number() in SELECT clause but I want to know why can't we use it group by?

like image 459
Mari Avatar asked Jan 01 '13 14:01

Mari


People also ask

Can we use windowing function without partition by and ORDER BY clause?

No, you cannot rely on that. Window functions are processed before the query's ORDER BY clause, and without an ORDER BY in the window definition, the rows will be processed in the order in which they happen to come from the subselect.

Can you use window functions in where clause?

You can't use window functions in WHERE , because the logical order of operations in an SQL query is completely different from the SQL syntax. The logical order of operations in SQL is: FROM, JOIN. WHERE.

What are windowed functions in SQL?

In SQL, a window function or analytic function is a function which uses values from one or multiple rows to return a value for each row. (This contrasts with an aggregate function, which returns a single value for multiple rows.)

Is ORDER BY necessary in window function?

ORDER BY is optional for the aggregate window functions and required for the ranking functions. This ORDER BY clause does not relate to the ORDER BY clause used outside of the OVER clause. The window function is applied to the rows within each partition sorted according to the order specification.


2 Answers

Windowed functions are defined in the ANSI spec to logically execute after the processing of GROUP BY, HAVING, WHERE.

To be more specific they are allowed at steps 5.1 and 6 in the Logical Query Processing flow chart here .

I suppose they could have defined it another way and allowed GROUP BY, WHERE, HAVING to use window functions with the window being the logical result set at the start of that phase but suppose they had and we were allowed to construct queries such as

SELECT a,         b,         NTILE(2) OVER (PARTITION BY a ORDER BY b) AS NtileForSelect   FROM YourTable   WHERE NTILE(2) OVER (PARTITION BY a ORDER BY b) > 1   GROUP BY a,             b,             NTILE(2) OVER (PARTITION BY a ORDER BY b)   HAVING NTILE(2) OVER (PARTITION BY a ORDER BY b) = 1 

With four different logical windows in play good luck working out what the result of this would be! Also what if in the HAVING you actually wanted to filter by the expression from the GROUP BY level above rather than with the window of rows being the result after the GROUP BY?

The CTE version is more verbose but also more explicit and easier to follow.

WITH T1 AS ( SELECT a,         b,         NTILE(2) OVER (PARTITION BY a ORDER BY b) AS NtileForWhere   FROM YourTable ), T2 AS ( SELECT a,        b,        NTILE(2) OVER (PARTITION BY a ORDER BY b) AS NtileForGroupBy FROM T1 WHERE NtileForWhere > 1 ), T3 AS ( SELECT a,        b,        NtileForGroupBy,        NTILE(2) OVER (PARTITION BY a ORDER BY b) AS NtileForHaving FROM T2 GROUP BY a,b, NtileForGroupBy ) SELECT a,        b,        NTILE(2) OVER (PARTITION BY a ORDER BY b) AS NtileForSelect FROM T3 WHERE NtileForHaving = 1 

As these are all defined in the SELECT statement and are aliased it is easily achievable to disambiguate results from different levels e.g. simply by switching WHERE NtileForHaving = 1 to NtileForGroupBy = 1

like image 54
Martin Smith Avatar answered Sep 28 '22 09:09

Martin Smith


You can work around that by placing the window function in a subquery:

select  invoice ,       rn from    (         select  Invoice         ,       row_number() over(order by Invoice) as rn         from    Table1         ) as SubQueryAlias group by         invoice ,       rn 
like image 29
Andomar Avatar answered Sep 28 '22 11:09

Andomar