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.
|
feedback
|
|
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.
| |||||||
feedback
|
|
You should take a look at the documentation of the driver that you're using ;) | |||||||||||||
feedback
|