LoginSignup
1
0

More than 3 years have passed since last update.

[Rails]指定したカラムが空白であるレコードを検索

Posted at

指定したカラムが空白であるレコードを検索

users_controller.rb
users = User.where("name =  \'\'")

逆に
指定したカラムが空白ではないレコードを検索

users_controller.rb
users = User.where.not("name =  \'\'")

参考

https://qiita.com/DrqYuto/items/67df6755560bb2fcd32d
https://qiita.com/Sirloin/items/b14ab34415a1ebd8a9c5

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0