From: Aldric Giacomoni <"aldric[remove]"@...> Date: 2009-04-01T03:39:50+09:00 Subject: Re: activerecord query building question Mark Thomas wrote: >>> RefPhysLocation.find_all_by_state("OH").each do |location| >>> puts location.refphys.name >>> end >>> >> Refphys.find(:all, :include => :rephyslocation, :conditions => "refphyslocation.city = ?", "cityname"]) That's closer to what I need. Thanks for the help though, I learned something new from what you gave me :)