I have two tables which have a structure as follows:
`content` (id, foreign_id, type, date_added)
`content_territory` (id, content_id, territory_iso)
The structure of these tables is designed so that you have one content_territory
record for every territory that has access to the piece of content. This means that one content
item can have upwards of 200 territory records.
The problem I have is that when listing the most recent content, I would like to verify that the content has a territory IN()
the users list of territories - and to ignore the record if it does not appear.