The following command is useful in pulling out all Styles with a certain feature:
Style.joins(:style_features).where('style_features.feature_id= ?', 1)
Is it possible to do the same thing, but for a series of features? As in:
Style.joins(:style_features).where('style_features.feature_id= ?', [1, 2, 3])