标签: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