Skip to content
Advertisement

how to filter data using qualify row_number in sql server [closed]

I am trying to use QUALIFY to filter the data without seccess (in SQL SERVER) also, I do not want to create a table with the row_number in the SELECT statement and then use WHERE clause.

Advertisement

Answer

SQL Server does not support QUALIFY which appears in other databases such as Teradata. Here is one way to write your query in a similar way, without a formal subquery, using a TOP 1 WITH TIES trick:

But the above is actually not that performant, so more typically we would in fact use a subquery here:

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement