当前位置 : 主页 > 网络推广 > seo >

如何检索mongoDB中以特定字符结尾的值的文档

来源:互联网 收集:自由互联 发布时间:2021-06-16
我将文档插入到mongoDB中的特定数据库中. 例如 db.employee.insert({name:"nithin",age:22}) db.employee.insert({name:"sreedevi",age:32}) 现在我想要检索名字以’i’结尾的文件. 在Javascript shell中,使用 $regex运
我将文档插入到mongoDB中的特定数据库中.
例如

db.employee.insert({name:"nithin",age:22})
 db.employee.insert({name:"sreedevi",age:32})

现在我想要检索名字以’i’结尾的文件.

在Javascript shell中,使用 $regex运算符

db.employee.find({name: {$regex: "i$"}})
网友评论