WITH Records AS (SELECT ROW_NUMBER() OVER(ORDER BY ID_of_your_SQLTable) AS 'ROW', * FROM yourSQLTable) SELECT * FROM Records WHERE ROW = X --You can change X with the number you wanna get (For Example ROW = 5 will bring the 5th record)
WITH Records AS (SELECT ROW_NUMBER() OVER(ORDER BY ID_of_your_SQLTable) AS 'ROW', * FROM yourSQLTable) SELECT * FROM Records WHERE ROW = X --You can change X with the number you wanna get (For Example ROW = 5 will bring the 5th record)