Railsでこれを選択するにはどうすればよいですか?
SELECT Women.phone, Users.name FROM women, users WHERE (users.cellid = women.cell_id);
モデル/user.rb
class User < ActiveRecord::Base
attr_accessible :cellid, :name
belongs_to :woman
end
モデル/女性.rb
class Woman < ActiveRecord::Base
attr_accessible :cell_id, :phone
has_many :users
end
コントローラー/index.rb
def index
@variables = User.all
@phones = Woman.all
end