当前位置:   article > 正文

mongodb 正则表达式

mongodb 正则表达式 索引

查询以 李 开头的

 db.student.find({name:/^李/})

查询英文的 姓名

 db.student.find({name:/^[a-zA-Z]{2,10}$/})

 

分页

// db.student.find({}).limit(2)
skip  起始位置
db.student.find({}).skip(2).limit(2)

 

排序    sort  1 正序  2 倒序
db.student.find({}).sort({name:1}) 
db.student.find({}).sort({name:-1})).skip(2).limit(2)

排除重复记录
db.student.distinct("city").slice(0,5)

 

转载于:https://www.cnblogs.com/ericblog1992/p/11413477.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/655300
推荐阅读
相关标签
  

闽ICP备14008679号