I have a collection T, with 2 fields: Grade1 and Grade2, and I want to select those with condition "Grade1 > Grade2", how can I get a query like in MySQL? Select * from T Where Grade1 > Grade2

Thanks in advance.

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

You can use a $where. Just be aware it will be fairly slow (has to execute Javascript code on every record) so combine with indexed queries if you can.

db.T.find( { $where: function() { return this.Grade1 > this.Grade2 } } );

link|improve this answer
Oops, I get it, just joint-use javascript or other shell scripts, thanks both of you guys! – Diego Cheng Dec 14 '10 at 19:59
1  
You can do this a little more compact too ... > db.T.find({ $where : "this.Grade1 > this.Grade2" }); – Justin Jenkins Dec 14 '10 at 20:03
feedback

You should take a look at the documentation of the driver that you're using ;)

link|improve this answer
So does it mean I can't directly operate on Mongo Db query? – Diego Cheng Dec 14 '10 at 19:33
Well, you can, with the MongoDb Shell. I don't know what OS you're using. But on OSX you would type 'mongo' in the terminal. Look here: mongodb.org/display/DOCS/Quickstart – Icid Dec 14 '10 at 20:01
But if you're writing an application, you have to use a driver. Here's an example for Ruby: mongodb.org/display/DOCS/Ruby+Language+Center – Icid Dec 14 '10 at 20:03
1  
Yep, I did some programming with C sharp on MongoDb, but now just want to see whether I can directly use some queries to do some quick work. Anyway, I really appreciate your helps! – Diego Cheng Dec 14 '10 at 20:14
You're welcome =) – Icid Dec 14 '10 at 20:15
feedback

Your Answer

 
or
required, but never shown

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