数据库查询语句

// 按年查询
db.getCollection('test').find({"create_date":{"$regex":"2019"}});
// 按年月查询
db.getCollection('test').find({"create_date":{"$regex":"2019-1"}});
// 按年月日查询
db.getCollection('test').find({"create_date":{"$regex":"2019-1-3"}});

表结构如图:

mongodb日期查询 mongodb时间查询语句_表结构