I have a doc that has a schema like {'year-month-day','others'}
and I want to convert 'year-month-day
to an ISODate time so I can use $match:{'$gte:targetDate'}
I have several problems:
- I am using pymongo, which dones support javaciprt, so I can not use
new Date()
in python and at the same timedatetime
is not working as well because it can not read'$year'
.
I think one way to achieve the above goal is first get the substrings of 'year-month-day'
and after aggregation I can use forEach(function(x){...})
to create a ISODate
for each date and compare with target
but doing means I will have to scan through every docs in the database which I dont think is a good choice.
If the first is not doable in pymongo, how can I do it by mongodb query? how can I use project to create a column with new data type?(like what I did in the second project).
Is there any way to do javascrip inside pymongo?
My script is like following:
Collection.aggregate([
{
'$project':{
'year':{'$substr':['$year-month-day',0,4]},
'month':{'$substr':['$year-month-day',5,2]},
'day':{'$substr':['$year-month-day',8,2]},
'others':'others'
}
},
{
'$project':{
'approTime':new Date(Date.UTC('$year','$month','$day')),
'others':'others'
}
},
{
'$group':{
'_id':{
'approTime':'$approTime',
'others':'others'
},
'count':{'$sum':1}
}
}
You could try converting the field
'year-month-day'
to mongoDB native ISODate data type by using the datetime module which is stored under the hood as the native date object in MongoDB:This can also be done in Mongo shell as: