MongoDB查询返回指定键
1.查看集合
成都创新互联公司专注为客户提供全方位的互联网综合服务,包含不限于成都做网站、成都网站制作、剑河网络推广、微信平台小程序开发、剑河网络营销、剑河企业策划、剑河品牌公关、搜索引擎seo、人物专访、企业宣传片、企业代运营等,从售前售中售后,我们都将竭诚为您服务,您的肯定,是我们最大的嘉奖;成都创新互联公司为所有大学生创业者提供剑河建站搭建服务,24小时服务热线:18982081108,官方网址:www.cdcxhl.com
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.find().pretty()
4.指定返回键(注意,只能全1或全0)
db.runoob.find({'view':{$gt:5000}},{title:1,view:1}).pretty()
5.无查询条件参数
db.runoob.find({},{title:1,view:1}).pretty()
6.不返回_id,url,description键
db.runoob.find({},{_id:0,url:0,description:0}).pretty()
分享题目:MongoDB查询返回指定键
链接地址:http://myzitong.com/article/pchipd.html