This is a very specific question regarding mysql as implemented in WordPress.
I'm trying to develop a plugin which will show (select) posts that have specific 'tags' and belong to specific 'categories' (both multiple)
I was told it's impossible because the way categories and tags are stored:
- wp_posts contains a lists of post, each posts have an "ID"

- wp_terms contains a list of terms (both categories and tags). Eac term has a TERM_ID

- wp_term_taxonomy has a list of terms with their TERM_IDs and has a Taxonomy definition for each one of those (either a Category or a Tag)

- wp_term_relationship has associations betweens terms and posts

How can I join the tables to get all posts with tags "Nuclear" and "Deals" that also belong to the category "Category1" ?
Thanks!
