[Solved] SQL Select from table where joined values from a second table are a subset of values from a third table

This is a classic Relational Division With Remainder question. You just need to frame it right: You want all Tasks… … whose TaskTags divide the set of all UserTags for a given User There can be a remainder of UserTags but not a remainder of TaskTags so the former is the dividend, the latter is … Read more