Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 periodic ajax calls. Reading unnecessarily is resource consuming and slow.

@itemlist = Item.find(:all, :conditions => { .... } ) #this select all columns 

I am looking for SELECT name, address FROM users; instead of SELECT * FROM users;

share|improve this question
1  
Usually if you don't need/use other columns, you should think about data normalization. – Pavel S Apr 21 '12 at 9:46

5 Answers

up vote 4 down vote accepted

make use of :select.. try this

@itemlist = Item.find(:all,:select => 'name, address', :conditions => { .... } )
share|improve this answer
thanks for the help! – Kapish M Apr 21 '12 at 14:08

Rails 3:

Item.select("name, address").where( .... )

share|improve this answer
thanks for the help! – Kapish M Apr 21 '12 at 14:07
Yup, great one! Promote this one, guys, as Rails 3 is far more popular than the 2nd one – Dan Myasnikov Apr 13 at 13:07

Using Arel (aka in Rails 3), use:

Item.where(...).select("name", "address")
share|improve this answer
thanks for the help! – Kapish M Apr 21 '12 at 14:08

Try this:

@itemlist = Item.find(:all, :select => "name, address", :conditions => { .... } )
share|improve this answer
thanks for the help! – Kapish M Apr 21 '12 at 14:08
@itemlist = Item.select('name, address').where(...#some condition)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.