What\'s the best way to include a LIKE clause in a Rails query i.e. something along the lines of (the completely incorrect):
Question.where(:content => \
You'd use the syntax:
Question.where("content LIKE ?" , "%#{farming}%")