I want to do the opposite of this:
image_name = "blah"
Pipe.where("LOWER(name) like ?", "%#{image_name.downcase}%")
(this would find a Pipe
named 'blahzzz`)
What I want is the opposite, where I have a pipe named ah
and given image_name = "blah", I want to be able to find that Pipe. How would I accomplish this?