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.