I am looking for a way to select the top 5 rows in a table (based on date),
however, I want to skip the first row.
The query "SELECT TOP 5 * FROM News ORDER BY CreateDate DESC" would give me
the top five, but I don't want the first row in that query.
The best way to describe this is to use a news example. I have one query
that will select top 1 row based on date created -- we'll call that the
feature story.
I need to be able to get the other 4 stories without having the feature
story coming up in the query - in other words - skip the first row.
Any help would be appreciated.
JB