有没有一种方法可以查询嵌入式文档?

时间:2018-12-22 06:37:13

标签: mongodb

在MongoDB Shell上,如何查询下面的“商店”文档,以便获得价格低于10的所有书籍的书名?我希望能回来:[“世纪风俗”,“白鲸”。

在我的旧javascript JSON解析器上,我通常会使用: $ .store.book [?(@。price <10)]。title ...但是我正在努力寻找与Mongo类似的东西。谢谢!!!

{
    "store": {
        "book": [
            {
                "category": "reference",
                "author": "Nigel Rees",
                "title": "Sayings of the Century",
                "price": 8.95
            },
            {
                "category": "fiction",
                "author": "Evelyn Waugh",
                "title": "Sword of Honour",
                "price": 12.99
            },
            {
                "category": "fiction",
                "author": "Herman Melville",
                "title": "Moby Dick",
                "isbn": "0-553-21311-3",
                "price": 8.99
            },
            {
                "category": "fiction",
                "author": "J. R. R. Tolkien",
                "title": "The Lord of the Rings",
                "isbn": "0-395-19395-8",
                "price": 22.99
            }
        ],
        "bicycle": {
            "color": "red",
            "price": 19.95
        }
    },
    "expensive": 10
}

0 个答案:

没有答案