How to use ROW_NUMBER Function in SQL Server
By FoxLearn 2/16/2024 4:45:20 AM 223
This post show you how to use ROW_NUMBER Function in SQL Server.
Syntax of the ROW_NUMBER() function:
ROW_NUMBER() OVER ( [PARTITION BY partition_expression, ... ] ORDER BY sort_expression [ASC | DESC], ... )
For example:
SELECT ROW_NUMBER() OVER (ORDER BY FirstName) as Order, FirstName, LastName, City FROM Customers
Result
Order | FirstName | LastName | City |
1 | Lucy | NULL | |
2 | Tom | NewYork |
The ROW_NUMBER() function is useful for pagination, It is a temporary value calculated when the query is run.
- How to convert varchar to uniqueidentifier in SQL Server
- Connection string mysql
- How to convert string to datetime in SQL
- How to Download and Restore Northwind database to SQL Server
- Download backup of Northwind database for SQL Server
- Download AdventureWorks sample database for SQL Server
- Download SQL Server Management Studio (SSMS) Versions
- How to Download SQL Server Management Studio (SSMS) Versions
Categories
Popular Posts
Spica Admin Dashboard Template
11/18/2024