What is the way in rails to structure sql query to only select certain columns from the database, I have some large data fields which I want to avoid loading from continuous
Rails 3:
Item.select("name, address").where( .... )