码迷,mamicode.com
首页 > 数据库 > 详细

小记------mongodb数据库的一些模糊查询

时间:2019-08-07 19:18:45      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:span   模糊查询   str   mon   大小写   div   模糊   mongod   line   

// 模糊匹配createTime   是以 2019-07-23 开头
db.getCollection(‘driver_online_record‘).find({"createTime" : /^2019-07-23/})
 
// 模糊匹配createTime   包含 2019-07-23
db.getCollection(‘driver_online_record‘).find({"createTime" : /2019-07-23/})
 
// 模糊匹配createTime   是以 2019-07-23 结尾
db.getCollection(‘driver_online_record‘).find({"createTime" : /2019-07-23^/})
 
// 模糊匹配createTime   包含aaa  切忽略大小写
db.getCollection(‘driver_online_record‘).find({"createTime" : /aaa/i})

小记------mongodb数据库的一些模糊查询

标签:span   模糊查询   str   mon   大小写   div   模糊   mongod   line   

原文地址:https://www.cnblogs.com/yzqyxq/p/11317075.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!