I've seen many examples of pagination like what's shown below. However, I want to use the same query for many different tables. Is there a way to use this technique without having to specify the column names. Ideally, some way to select * as well as the added row_number column?
SELECT * FROM (
SELECT
ROW_NUMBER() OVER (ORDER BY ColumnName1 ASC) AS rownumber, ColumnName1, ColumnName2
FROM TableName
) AS foo
WHERE rownumber BETWEEN 10 AND 20