// 模糊匹配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})
原文地址:https://www.cnblogs.com/yzqyxq/p/11317075.html
时间: 2024-10-14 19:41:16