users_controller.rb

  def index
    @users = User.all
  end

views/users/index.html.erb

 <p><%= @users %></p>

上記のように記述してブラウザで見ると

#<User::ActiveRecord_Relation:0x0055a772872fe8>

と表示されています。この内容はどういうことなのでしょうか?

find allでusersテーブルのusernameを全て取り出したいのですがどのような記述になりますか?