How do I use a guid in a mongodb shell query

后端 未结 3 708
执笔经年
执笔经年 2020-12-09 08:42

When using the MongoDB shell, how do I use a guid datatype (which I have used as the _id in my collection).

The following format doesn\'t work:

>d         


        
3条回答
  •  离开以前
    2020-12-09 09:12

    You can use easily:

    .find({ "_id" : CSUUID("E3E45566-AFE4-A564-7876-AEFF6745FF")})
    

提交回复
热议问题