How do I find records matching attribute with 1+ values in ActiveRecord/SQL? Examples would be something like:
Post.find_by_type("Post and/or ChildPost")
Post.find(:type => "Post and/or ChildPost")
How can I do this? The number of values will be no more than 10 I'd say.