sql >> Database teknologi >  >> NoSQL >> MongoDB

Konvertering af streng til dato i mongodb

I mit tilfælde har jeg haft succes med følgende løsning til at konvertere felt ClockInTime fra ClockTime-samling fra streng til datotype :

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


  1. Aggregerer i lokal tidszone i mongodb

  2. 6 afgørende Redis-overvågningsmålinger, du skal se

  3. Introduktion til HDFS Federation &Architecture

  4. Mongo push til array inde i array