您现在的位置是:课程教程文章

mongodb数据之间的转换

2023-12-18 18:10课程教程文章 人已围观

1、int转换为string类型

db.collectionName.find().forEach(function(x) {
x.FieldName = x.FieldName.toString();
db.collectionName.save(x);
});

2、string转换为Date类型

db.collectionName.find().forEach(function(x) {
x.FieldName = new ISODate(x.FieldName );
db.collectionName.save(x);
});

 3、string转换为int类型

//string转为int类型
db.collections.find().forEach( function (x) {
  x.ise= NumberInt (x.ise);
  db.collections.save(x);
});
课程教程:mongodb数据之间的转换

上一篇:python里怎么调用函数

下一篇:没有了

站点信息

  • 文章统计篇文章