I have two SQL Tables, 'products' and 'tags'. They have an n:m relationship, using a third table 'product_tags'.
I want to use a query to find every product that has a number of specific tags. For example, find every products that has a relation to the tags 1, 23 and 54.
Is there a way to do this with just one query?