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 someth
User.where('id NOT IN (?)', ids+[0])