Hi Guys,<br><br>For the life of me I can't figure this out. I think it requires a MySQL solution than Rails. Anyway, here's my problem illustrated<br><br>Models:<br><br>Monitor (computer monitors)<br>has_many :features<br>
<br>Feature:<br>name = [big, small, black, white]<br><br>I want to find a Monitor that is BOTH white and big.<br><br>My first shot at this:<br>find(:all, :include => :features, :conditions => ["name IN ('white',<br>
'big')" )<br><br>But this query will find Monitors that's EITHER white or big.<br><br>Can anyone help at all?<br><br>Xin