The following finder prints out IS NULL.
User.where(:id =>nil) #=> []
User Load (0.5ms) SELECT `users`.* FROM `users` WHERE `users`.`id` IS NULL ORDER BY created_at DESC
But I couldn't find how to print out IS NOT NULL one?
The following finder prints out IS NULL.
User.where(:id =>nil) #=> []
User Load (0.5ms) SELECT `users`.* FROM `users` WHERE `users`.`id` IS NULL ORDER BY created_at DESC
But I couldn't find how to print out IS NOT NULL one?