We will create a filter that filters a node which is the latest one created. This is interesting when used in connection with other filters especially taxonomy term for a specific vocabulary. For example show me all articles with term Backend except the latest one with any term in the vocabulary.
Let's explain it further, I have a vocabulary Articles which contains terms (Backend, Frontend & DevOps). When I create a new article I can assign one or more terms to it since some articles may belong to multiple terms like both Backend & Frontend and so on.
Now I want to show the latest article on front page which is easy to achieve using the existing Views filters (Authored on field) and limit result to one. But I don't want to show this latest article in any list of Backend, Frontend or DevOps since this has been already shown on front page and I don't want a duplicate link/article.
Now a million dollar comment is that the Backend list doesn't know if the latest article on front page is selected from this list or not and so are Frontend & DevOps lists. They are simply filtered on corresponding taxonomy terms (backend, frontend, devops).
In simple words and yet in simple SQL this is the problem of sub-query i.e first we find the latest article with a sub-query and then filter it in the main query like nid != latest article id.
A pseudo code would look something like the following:
SELECT * FROM CONTENT_TYPES
WHERE field_tags = Backend
AND NID != ( SELECT NID FROM CONTENT_TYPES ORDER BY authored_on DESC LIMIT 1);