54
42

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 5 years have passed since last update.

Rails - モデルから特定のカラムのみ取得

Last updated at Posted at 2014-11-12

はじめに

モデルからデータを取得するとき、カラムを指定する方法のメモです。必要なカラムのみ取得することによって、効率化が図れます。

やりかた

モデル.select(取得するカラム)

モデルUserからnameカラムのみ取得したい場合。

app/controllers/users_controller.rb

class UsersController < ApplicationController
  def index
    @user = User.select("name")
  end
end

応用

ユーザー数を取得したい場合

User.count

ではなく、

User.select("id").count

とカラムを指定したほうが高効率。

以上です。間違い等ございましたらツッコんでくださいm(__)m

参考

すごくありがちなRailsサイトの高速化 | D-Native
モデル(model) - Railsドキュメント

54
42
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
54
42

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?