MongoDB - Filtering data using comparison operators

Professionaluser
Posted by Professionaluser under Sql Server category on | Points: 40 | Views : 1093
$gt is an operator used to do greater than comparison against any field in a collection

sample code:
>db.Person.find( { "PhoneNum": { $gt : 12345 } } )

Comments or Responses

Login to post response