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()
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。