I have an SQL Query that i\'m running but I only want to select a specific row. For example lets say my query was:
Select * from Comments
L
Well, in T-SQL (the dialect for SQL Server) you can do the following:
SELECT TOP 1 * FROM (SELECT TOP 8 * FROM Table ORDER BY SortField) ORDER BY SortField DESC
This way you get the 8th record.