How to select only specific attributes from a model?

前端 未结 8 1692
傲寒
傲寒 2021-01-02 05:20

I want to select only specific attributes from a model(id,name).

The SQL-command can be for example:

SELECT id,name,username FROM Users

Do you know h

8条回答
  •  心在旅途
    2021-01-02 05:52

    We can use select for symbol or string such as:

    User.select("id, name, username")
    

    or

    User.select(:id, :name, :username)
    

提交回复
热议问题