problem:
make some selection in database OTHER THEN top (10) post

solution:  
provide, table named news with element: newsID, newsDate

SELECT * FROM News WHERE (newsID NOT IN (SELECT TOP (10) newsID FROM News AS News_1 ORDER BY newsDate DESC)) ORDER BY newsDate DESC 

 

it will return all post except top 10 post