数据库查询语句
// 按年查询
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"}});
表结构如图:
数据库查询语句
// 按年查询
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"}});
表结构如图:
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M