LoginSignup
0
0

More than 1 year has passed since last update.

【Ruby on Rails】Rails consoleで特定のレコードのカラムの情報を更新する方法

Posted at

Rails console

pry(main)> User.first.update_column(:name, "ごりら")

これは、Userテーブルの一番目のテーブルのnameカラムの内容をごりらに変更したいとき

SQL文

SELECT `users`.* FROM `users` ORDER BY `users`.`id` ASC LIMIT 1
UPDATE `users` SET `users`.`name` = 'ごりら' WHERE `users`.`id` = 1

こんな感じ。

0
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
0
0