1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
{ "name" : "Terry Brooks" , "books" : [ "The Sword of Shannara" , "The Elfstones of Shannara" , "The Wishsong of Shannara" ] }, { "name" : "Oscar Wilde" , "books" : [ "The Picture of Dorian Gray" ] } |
1 |
db.AUTHORS.find({ "books" : {$size : {$gt : 1}}}); |
1 |
db.AUTHORS.find({$where : "this.books.length > 1" }); |
1 2 3 4 5 6 |
{ "error" : { "$err" : "erroroninvocationof$wherefunction: JSError: TypeError: this.bookshasnopropertiesnofile_a: 0" , "code" : 10071 } } |
1 |
db.AUTHORS.find({ "books" : {$exists: true }, $where : "this.books.length > 0" }); |
No comments:
Post a Comment