Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

given a string of emails like:

emails = "atttt@bbb-inc.com, scott@sara.com, a@a.com, rasx@bo.com"

With one query, I would like to return all matching User records where:

User.rb (id,email)

Here is my query, but it does not return results if I have emails set to more than one email:

User.where("email IN (?)", emails)
  User Load (1.0ms)  SELECT "users".* FROM "users" WHERE (users.deleted_at IS NULL) AND (email IN ('atttt@bbb-inc.com,, scott@sara.com, a@a.com, rasx@bo.com'))
 => [] 

Suggestions on how to update this User.where query to get all matching Users from the emails provided? Thank you.

share|improve this question
Adding postgresql as a tag as that is the database I'm using with rails. – Sarahpre Sep 27 '12 at 23:18

1 Answer

up vote 0 down vote accepted

First, turn the emails into an Array:

emails = "atttt@bbb-inc.com, scott@sara.com, a@a.com, rasx@bo.com".split(', ')

Then you can call:

User.where(:email => emails)
share|improve this answer
Thanks, any way to reverse this where Users NOT in the emails array? Thanks – Sarahpre Sep 27 '12 at 23:40
1  
User.where("email NOT IN (?)", emails) – gylaz Sep 27 '12 at 23:53
1  
It should have worked. Did you remember to convert the emails to Array first? – gylaz Sep 28 '12 at 0:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.