博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Mongodb 利用mongoshell进行数据类型转换
阅读量:5921 次
发布时间:2019-06-19

本文共 1047 字,大约阅读时间需要 3 分钟。

$type操作符

检测类型

种类 代号 别名
Double 1 “double”
String 2 “string”
Object 3 “object”
Array 4 “array”
Binary data 5 “binData”
Undefined 6 “undefined” Deprecated.
ObjectId 7 “objectId”
Boolean 8 “bool”
Date 9 “date”
Null 10 “null”
Regular Expression 11 “regex”
DBPointer 12 “dbPointer”
JavaScript 13 “javascript”
Symbol 14 “symbol”
JavaScript (with scope) 15 “javascriptWithScope”
32-bit integer 16 “int”
Timestamp 17 “timestamp”
64-bit integer 18 “long”
Min key -1 “minKey”
Max key 127 “maxKey

db.article.find({data:{$type:2})    //寻找data字段为string的文档

forEach函数

对查询结果集合中每个文档使用js函数

cursor.forEach(function)

Iterates the cursor to apply a JavaScript function to each document from the cursor.

使用例子

data.tagList数组中的string转换为int32,x代表迭代传入的文档

db.article.find({"data.tagList.0":{$type:2}}).forEach(function(x){var i=0;var length=x.data.tagList.length; for(i=0;i

note

1.使用js新特性要注意,比如我的是不支持for(var a of b)的,还有注意string是小写啊
2.可以使用print输出

db.users.find().forEach( function(myDoc) { print( "user: " + myDoc.name ); } );

转载于:https://www.cnblogs.com/jcuan/p/5863607.html

你可能感兴趣的文章
Apache Camel http
查看>>
Linux远程下载文件命令
查看>>
UBUNTU安装G++
查看>>
C++ 函数返回值为对象并不调用复制构造函数
查看>>
手机下载土豆网视频复制到电脑上不能播放问题
查看>>
Linux下微信安装
查看>>
python实现目录下文件名匹配的进行迁移
查看>>
Windows安装Apache服务器(httpd),添加组件实现Flash播放器在线自由拖放MP4
查看>>
springboot集成shiro框架(2)添加缓存
查看>>
Make 命令教程
查看>>
ARP报文详解
查看>>
H3C 7503、5500、5120交换机配置端口汇聚
查看>>
项目成本管理
查看>>
linux hwclock命令参数及用法详解--linux显示/设置硬件时钟命令
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
github 重要框架
查看>>
读框架笔记(一)
查看>>
Lync 小技巧-55-Lync 客户端正常显示手机号码
查看>>
ubuntu 解决更新时出现unable to locate package
查看>>