Quantcast
Channel: How to select the nth row in a SQL database table? - Stack Overflow
Viewing all articles
Browse latest Browse all 35

Answer by E-A for How to select the nth row in a SQL database table?

$
0
0

For example, if you want to select every 10th row in MSSQL, you can use;

SELECT * FROM (  SELECT    ROW_NUMBER() OVER (ORDER BY ColumnName1 ASC) AS rownumber, ColumnName1, ColumnName2  FROM TableName) AS fooWHERE rownumber % 10 = 0

Just take the MOD and change number 10 here any number you want.


Viewing all articles
Browse latest Browse all 35

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>