rownumber() function is used to return the rownumber with select query
The Follwoing query will return the result set row number
Sintaksë
ROW_NUMBER ( ) OVER ( [
Shembull
Select row_number() over(order by productid) as SlNo,productname,unitprice from products
Leave a Reply