• 主页

  • 投资

  • IT

    🔥
  • 设计

  • 销售

关闭

返回栏目

关闭

返回MongoDB栏目

22 - 命令 - 修改数据类型

作者:

贺及楼

成为作者

更新日期:2024-04-09 13:58:06

命令 - 修改数据类型

修改 - 数据类型

新方法

  1. //要改4+2个地方
  2. //string转为int类型
  3. db.your_collection.find({"your_role":{$type:2}}).forEach(function(x){
  4. db.your_collection.update({ your_role : { $type: 2 } }, {$set: {"your_role": NumberInt(x.your_role)}});
  5. })
MongoDB Data types Number
Double 1
String 2
Object 3
Array 4
Binary data 5
Undefined 6
Object Id 7
Boolean 9
Date 10
Null 11
Regular Expression 12
JavaScript 13
symbol 14
JavaScript with scope 15
Integer 16 and 18
timestamp 10
Min key 255
Max key 127
  1. //string转为double类型
  2. db.your_collection.find({'your_role' : { $type : 2 }}).forEach( function (x) {
  3. x.your_role = parseInt(x.your_role);
  4. db.your_collection.save(x);
  5. });
  6. //string转为int类型
  7. db.your_collection.find().forEach( function (x) {
  8. x.your_role= NumberInt(x.your_role);
  9. db.your_collection.save(x);
  10. });
  11. //string转化为date类型
  12. db.your_collection.find().forEach( function (x) {
  13. x.your_role = new ISODate(x.your_role);
  14. db.your_collection.save(x);
  15. });
  16. //string转decimal
  17. db.your_collection.find().forEach(function(x) {
  18. x.your_role = NumberDecimal(Number(x.your_role));
  19. db.your_collection.save(x);
  20. })
  21. //将其转为string类型
  22. db.your_collection.find({your_role:{$exists:true}}).forEach(function(x){
  23. x.your_role=new String(x.your_role);
  24. db.your_collection.save(x);//保存
  25. //更改String类型为Date类型
  26. db.getCollection('your_collection').find({'your_role': {$type:2}}).forEach(
  27. function(doc){
  28. db.getCollection('your_collection').update({'_id': doc._id},{$set:{'your_role': new ISODate(doc.your_role)}})
  29. }
  30. )
  31. or
  32. db.getCollection('your_collection').find({'your_role': {$type:2}}).forEach(
  33. function(doc){
  34. doc.your_role = new ISODate(doc.your_role);
  35. db.getCollection('your_collection').save(doc);
  36. }
  37. )
  38. //更改Date类型为String类型
  39. db.getCollection('your_collection').find({"_id" : 416,'your_role':{$type:9}}).forEach(
  40. function(x){
  41. x.your_role = x.your_role.toISOString();
  42. db.getCollection('your_collection').save(x);
  43. }
  44. )
  45. //将类型转为str
  46. db.getCollection('your_collection').find({"_id" : 419}).forEach(
  47. function(x){
  48. x.your_role = String(x.your_role);
  49. db.getCollection('your_collection').save(x);
  50. }
  51. )
  52. //截取字符串长度
  53. db.getCollection('your_collection').find({"_id" : 416,'your_role':{$type:2}}).forEach(
  54. function(x){
  55. x.your_role = x.your_role.substr(0,10);
  56. db.getCollection('your_collection').save(x);
  57. }
  58. )
  59. //更改Date类型为String类型,并截取字符串长度
  60. db.getCollection('your_collection').find({"_id" : 416,'your_role':{$type:2}}).forEach(
  61. function(x){
  62. x.your_role = x.your_role.toISOString().substr(0,10);
  63. db.getCollection('your_collection').save(x);
  64. }
  65. )
  66. //把时间类型转为NumberLong的时间戳类型
  67. db.getCollection('your_collection').find({"_id" : 419,'your_role':{$type:9}}).forEach(
  68. function(x){
  69. x.your_role = NumberLong(x.your_role.getTime()/1000);
  70. db.getCollection('your_collection').save(x);
  71. }
  72. )
  73. //设置字段为int类型,NumberInt(3),默认是double类型
  74. db.getCollection('your_collection').find({"your_role" : null}).forEach(
  75. function(item){
  76. db.getCollection('your_collection').update({"_id":item._id},{$set:{"your_role":NumberInt(3)}})
  77. }
  78. )
  79. //修改double类型为int类型
  80. db.getCollection('your_collection').find({'your_role' : { $type : 1 }}).forEach(
  81. function(x) {
  82. x.your_role = NumberInt(x.your_role);
  83. db.getCollection('your_collection').save(x);
  84. }
  85. )
  86. //字符串转为浮点数
  87. db.getCollection('your_collection').find({'your_role': {$type:2}}).forEach(
  88. function(doc){
  89. db.getCollection('your_collection').update({'_id': doc._id},{$set:{'your_role': parseFloat(doc.your_role)}})
  90. }
  91. )
  92. //字符串转为double
  93. db.getCollection('your_collection').find({'your_role': {$type:2}}).forEach(
  94. function(doc){
  95. db.getCollection('your_collection').update({'_id': doc._id},{$set:{'your_role': parseInt(doc.your_role)}})
  96. }
  97. )