# find all records where name starts with the first char of my_string find(:all, :conditions => ["name_column LIKE ?", "#{my_string.first}%"])
# find all records where name starts with the first char of my_string find(:all, :conditions => ["name_column LIKE ?", "#{my_string.first}%"])