Hello,
You can use the following code as the example which select
TOP N (in this example TOP 1) document(s) from the News table and the condition
NOT IN defines that it won't be displayed, so if you want to start from the third you set TOP 2 etc.
DocumentID NOT IN (SELECT TOP 1 DocumentID FROM [View_CONTENT_News_Joined] WHERE NodeSiteID={%NodeSiteID%})
Please, also don't forget to set the right NodeSiteID.
Best regards,
Martin Danko