User.where(id: [1, 5, 7])
上記コードは以下のSQLを発行する。
SELECT * FROM users WHERE users.id IN (1, 5, 7)
参考サイト
Go to list of users who liked
More than 5 years have passed since last update.
User.where(id: [1, 5, 7])
上記コードは以下のSQLを発行する。
SELECT * FROM users WHERE users.id IN (1, 5, 7)
参考サイト
Register as a new user and use Qiita more conveniently
Go to list of users who liked