MongoDB指定类型查询数据
1.查看集合
show collections
2.向集合中添加數據
db.runoob.insertMany([
{
'title':'data1',
'url':'https://blog.51cto.com/suyanzhu',
'description':'this is data1',
'view':5000
},
{
'title':'data2',
'url':'https://blog.51cto.com/suyanzhu',
'description':'this is data2',
'view':3650
},
{
'title':'data3',
'url':'https://blog.51cto.com/suyanzhu',
'description':'this is data3',
'view':9527
}
])
3.向集合添加數據
db.runoob.insert({
????? ? title: 222,?
????? ? description: 'mongodb',
????? ? by: 'suyanzhu',
????? ? url: 'https://blog.51cto.com/suyanzhu',
????? ? tags: ['php','mongodb'],
????? ? likes: 200
})
4.查看所有數據
db.runoob.find().pretty()
5.根據類型查詢數據
// 查詢title類型為字符串的數據
db.runoob.find({'title':{$type:2}}).pretty()
// 或
db.runoob.find({'title':{$type:'string'}}).pretty()
//查詢title類型為數值的數據
db.runoob.find({'title':{$type:1}}).pretty()
// 或
db.runoob.find({'title':{$type:'double'}}).pretty()
轉載于:https://blog.51cto.com/suyanzhu/2307917
總結
以上是生活随笔為你收集整理的MongoDB指定类型查询数据的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Progressbar 实现从右向左 加
- 下一篇: HTTP权威指南记录 ---- We