I want to exclude the first row from displaying from a SQL Server 2005 Express database... how do I do this?
I know how to return just the top row, but how do I return all rows, except the top row
I want to exclude the first row from displaying from a SQL Server 2005 Express database... how do I do this?
I know how to return just the top row, but how do I return all rows, except the top row
When you say you don't want the top row I assume you have some kind of
order by
that defines which row is at the top. This sample uses theID
column to do that.