I have a table of around 100 Users and I also have an array of user ids. What I wanted to do is show all users who are not a part of this array of user ids. When I do something like this
User.where('id NOT IN (?)', [9, 2, 3, 4])
It successfully returns the records where the user's id does not belong in that array. However if that array is empty like so
User.where('id NOT IN (?)', [])
It does not return any users back and the SQL query looks like this
SELECT "users".* FROM "users" WHERE (id NOT IN (NULL))
Does anyone know why this happens or could this be a bug? I am using Rails 3.2.5 with PostgreSQL.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…