Hi,
I'm getting my records using:
@users= User.find(:all,:conditions=>["country=? ",country])
where country is a String with the name of the country.
But now I want to get the result for different countries. I have an array countries = ['Germany','France','Spain']
and I want to get all the records where country is one of those included in the array
How can I do that?
Thanks