1

这是查询:

mongoexport --host our.dbhost.com --port 27017 --username peter -p clark --collection sent_mails --db dbname --query '{trigger_id:ObjectId( "50c62e97b9fe6a000200000c"), updated_at: {$lt : ISODate("2013-02-28"), $gte : ISODate("2013-02-01") }}'

当我运行此命令时,我得到:

assertion: 10340 Failure parsing JSON string near: , updated_

有任何想法吗?(我想要与二月份更新的 trigger_id 匹配的所有记录。)

4

1 回答 1

1

如本期所述:Mongoexport using $gt and $lt constraints on a date range,您必须在 mongoexport 中使用 Unix 时间戳进行日期查询

时间戳必须以毫秒为单位

在 bash shell 中调用它看起来像这样:

let "date_from=`date --utc --date "2013-02-01" +%s` * 1000"
let "date_to=`date --utc --date "2013-03-01" +%s` * 1000"
mongoexport -d test -c xx --query "{updated_at:{\$gte:new Date($date_from),\$lt:new Date($date_to)}}"> xx.json
> connected to: 127.0.0.1
> exported 1 records

xx 集合包含:

> db.xx.find().pretty()
{
    "_id" : ObjectId("5158f670c2293fc7aadd811e"),
    "trigger_id" : ObjectId("50c62e97b9fe6a000200000c"),
    "updated_at" : ISODate("2013-02-11T00:00:00Z")
}
于 2013-04-01T04:18:53.730 回答