3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[Rails]idsメソッドについて

Last updated at Posted at 2021-04-23

はじめに

idsメソッドについてRailsドキュメントでは以下のように説明されています。
idsは、テーブルの主キーを使用するリレーションのIDをすべて取り出すのに使用できます。

使い方

usersテーブルのidカラムのデータを取得する
User.ids
SELECT `users`.`id` FROM `users`
=> [1, 2, 3, 4] # 返り値`

idsメソッドはpluckメソッドに似ていますが少し違いがありpluckメソッドの場合はカラムを指定して指定したカラムを配列に入れて返します。idsメソッドの場合は主キーのカラムデータのみを取得します。この場合はidが取得される。

またpluckメソッドの詳しい使い方は以下をご覧ください

3
1
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
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?