From: Paul Thomas Date: 2005-10-04T01:31:47+09:00 Subject: Selecting From A Different Table How do I select records from a table that has a different name than my controller? My example is as follows in locations_controller.rb class LocationsController < ApplicationController def new @location = Location.new @regions = #Needs to do a find(:all) to populate from regions table end