小记------mongodb数据库的一些模糊查询
Posted yzqyxq
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小记------mongodb数据库的一些模糊查询相关的知识,希望对你有一定的参考价值。
// 模糊匹配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数据库的一些模糊查询的主要内容,如果未能解决你的问题,请参考以下文章