在mongodb中将字符串转换为日期

时间:2012-06-08 04:05:20

标签: mongodb mongodb-query aggregation-framework

有没有办法使用mongodb shell

使用自定义格式将字符串转换为日期

我试图将“21 / May / 2012:16:35:33 -0400”转换为日期,

有没有办法传递DateFormatter或其他东西 Date.parse(...)ISODate(....)方法?

6 个答案:

答案 0 :(得分:34)

在我的情况下,我成功使用以下解决方案将ClockTime集合中的字段ClockInTime从字符串转换为<日期类型

db.ClockTime.find().forEach(function(doc) { 
    doc.ClockInTime=new Date(doc.ClockInTime);
    db.ClockTime.save(doc); 
    })

答案 1 :(得分:15)

使用MongoDB 4.0及更新版

$toDate 运算符会将值转换为日期。如果该值无法转换为日期,则 $toDate 错误。如果值为null或缺失, $toDate 将返回null:

您可以在聚合管道中使用它,如下所示:

db.collection.aggregate([
    { "$addFields": {
        "created_at": {
            "$toDate": "$created_at"
        }
    } }
])

以上相当于使用 $convert 运算符,如下所示:

db.collection.aggregate([
    { "$addFields": {
        "created_at": { 
            "$convert": { 
                "input": "$created_at", 
                "to": "date" 
            } 
        }
    } }
])

使用MongoDB 3.6及更新版

您还可以使用 $dateFromString 运算符将日期/时间字符串转换为日期对象,并具有指定日期格式和时区的选项:

db.collection.aggregate([
    { "$addFields": {
        "created_at": { 
            "$dateFromString": { 
                "dateString": "$created_at",
                "format": "%m-%d-%Y" /* <-- option available only in version 4.0. and newer */
            } 
        }
    } }
])

使用MongoDB版本>= 2.6 and < 3.2

如果MongoDB版本没有进行转换的本机运算符,则需要使用 {{手动迭代 find() 方法返回的游标。 3}} 方法 或光标方法 forEach() 来访问文档。使用循环,将字段转换为ISODate对象,然后使用 next() 运算符更新字段,如下面的示例,其中字段名为created_at并且当前保持字符串格式的日期:

var cursor = db.collection.find({"created_at": {"$exists": true, "$type": 2 }}); 
while (cursor.hasNext()) { 
    var doc = cursor.next(); 
    db.collection.update(
        {"_id" : doc._id}, 
        {"$set" : {"created_at" : new ISODate(doc.created_at)}}
    ) 
};

为了提高性能,尤其是在处理大型集合时,请利用 $set 进行批量更新,因为您将以1000个批量发送操作到服务器您可以获得更好的性能,因为您不是每次请求都向服务器发送一次请求。

以下演示了此方法,第一个示例使用MongoDB版本>= 2.6 and < 3.2中提供的批量API。它更新所有 通过将created_at字段更改为日期字段来收集集合中的文档:

var bulk = db.collection.initializeUnorderedBulkOp(),
    counter = 0;

db.collection.find({"created_at": {"$exists": true, "$type": 2 }}).forEach(function (doc) {
    var newDate = new ISODate(doc.created_at);
    bulk.find({ "_id": doc._id }).updateOne({ 
        "$set": { "created_at": newDate}
    });

    counter++;
    if (counter % 1000 == 0) {
        bulk.execute(); // Execute per 1000 operations and re-initialize every 1000 update statements
        bulk = db.collection.initializeUnorderedBulkOp();
    }
})
// Clean up remaining operations in queue
if (counter % 1000 != 0) { bulk.execute(); }

使用MongoDB 3.2

下一个示例适用于自 Bulk API 以来的新MongoDB版本3.2,并使用 deprecated the Bulk API

var bulkOps = [],
    cursor = db.collection.find({"created_at": {"$exists": true, "$type": 2 }});

cursor.forEach(function (doc) { 
    var newDate = new ISODate(doc.created_at);
    bulkOps.push(         
        { 
            "updateOne": { 
                "filter": { "_id": doc._id } ,              
                "update": { "$set": { "created_at": newDate } } 
            }         
        }           
    );

    if (bulkOps.length === 500) {
        db.collection.bulkWrite(bulkOps);
        bulkOps = [];
    }     
});

if (bulkOps.length > 0) db.collection.bulkWrite(bulkOps);

答案 2 :(得分:8)

您可以在Ravi Khakhkhar提供的第二个链接中使用javascript,或者您将不得不执行一些字符串操作来转换您的原始字符串(因为原始格式中的某些特殊字符未被识别为有效delimeters)但是一旦你这样做,你可以使用“new”

training:PRIMARY> Date()
Fri Jun 08 2012 13:53:03 GMT+0100 (IST)
training:PRIMARY> new Date()
ISODate("2012-06-08T12:53:06.831Z")

training:PRIMARY> var start = new Date("21/May/2012:16:35:33 -0400")        => doesn't work
training:PRIMARY> start
ISODate("0NaN-NaN-NaNTNaN:NaN:NaNZ")

training:PRIMARY> var start = new Date("21 May 2012:16:35:33 -0400")        => doesn't work    
training:PRIMARY> start
ISODate("0NaN-NaN-NaNTNaN:NaN:NaNZ")

training:PRIMARY> var start = new Date("21 May 2012 16:35:33 -0400")        => works
training:PRIMARY> start
ISODate("2012-05-21T20:35:33Z")

这里有一些你可能会觉得有用的链接(关于修改mongo shell中的数据) -

http://cookbook.mongodb.org/patterns/date_range/

http://www.mongodb.org/display/DOCS/Dates

http://www.mongodb.org/display/DOCS/Overview+-+The+MongoDB+Interactive+Shell

答案 3 :(得分:3)

我在MongoDB中有一些字符串存储,必须重新格式化为mongodb中正确有效的dateTime字段。

这是特殊日期格式的代码:“2014-03-12T09:14:19.5303017 + 01:00”

但你可以轻松地接受这个想法并编写自己的正则表达式来解析日期格式:

// format: "2014-03-12T09:14:19.5303017+01:00"
var myregexp = /(....)-(..)-(..)T(..):(..):(..)\.(.+)([\+-])(..)/;

db.Product.find().forEach(function(doc) { 
   var matches = myregexp.exec(doc.metadata.insertTime);

   if myregexp.test(doc.metadata.insertTime)) {
       var offset = matches[9] * (matches[8] == "+" ? 1 : -1);
       var hours = matches[4]-(-offset)+1
       var date = new Date(matches[1], matches[2]-1, matches[3],hours, matches[5], matches[6], matches[7] / 10000.0)
       db.Product.update({_id : doc._id}, {$set : {"metadata.insertTime" : date}})
       print("succsessfully updated");
    } else {
        print("not updated");
    }
})

答案 4 :(得分:0)

通过编写如下脚本来使用像momentjs这样的库如何:

[install_moment.js]
function get_moment(){
    // shim to get UMD module to load as CommonJS
    var module = {exports:{}};

    /* 
    copy your favorite UMD module (i.e. moment.js) here
    */

    return module.exports
}
//load the module generator into the stored procedures: 
db.system.js.save( {
        _id:"get_moment",
        value: get_moment,
    });

然后在命令行加载脚本,如下所示:

> mongo install_moment.js

最后,在你的下一个mongo会话中,像这样使用它:

// LOAD STORED PROCEDURES
db.loadServerScripts();

// GET THE MOMENT MODULE
var moment = get_moment();

// parse a date-time string
var a = moment("23 Feb 1997 at 3:23 pm","DD MMM YYYY [at] hh:mm a");

// reformat the string as you wish:
a.format("[The] DDD['th day of] YYYY"): //"The 54'th day of 1997"

答案 5 :(得分:0)

您可以使用$dateFromString聚合将字符串日期转换为ISO日期

db.collection.aggregate([
  {
    "$project": {
      "date": {
        "$dateFromString": {
          "dateString": "$date"
        }
      }
    }
  }
])