中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

MongoDB查詢如何只輸出部分字段內容

發布時間:2020-08-04 12:30:13 來源:ITPUB博客 閱讀:446 作者:chenfeng 欄目:關系型數據庫
例如集合test,字段有id,url和data三列,現在我們只想輸出id和url字段,可以按如下方法來查:
> db.test.find( {}, { id: 1, url: 1 } )
{ "_id" : ObjectId("5ad8a51bb5cec3000b17f39d"), "url" : "http://info.zjktx.cn/urlsearch.php?info_flag=6&url=915ad2673221b5ab17ba29e24d00efc3" }
{ "_id" : ObjectId("5ad8a51bb5cec3000b17f39e"), "url" : "http://mp.weixin.qq.com/s?__biz=MzIwOTY0NjY5NA==&mid=2247487505&idx=3&sn=8bdfc5b35eaa5eb7d2dbc2ff6247bf06&chksm=9771f518a0067c0e982d834821f9a44b7eea39f60cff8d50886175bbe1c93b27c70a8af9bfd9&scene=0#rd" }
{ "_id" : ObjectId("5ad8a51bb5cec3000b17f39f"), "url" : "http://weibo.com/6432427115/GcR5t3Fh9" }
{ "_id" : ObjectId("5ad8a51bb5cec3000b17f3a0"), "url" : "http://weibo.com/6503912228/GcR5ftPt7" }
{ "_id" : ObjectId("5ad8a51bb5cec3000b17f3a1"), "url" : "http://mp.weixin.qq.com/s?__biz=MzU1NzE3MTEzOQ==&mid=2247486132&idx=7&sn=e031435df54cc5c6dcbdab4136c73222&chksm=fc38a218cb4f2b0e0b581ea5d7ef13f95d29321b385fe51137c8cd102b715ebfb75c284aacb0&scene=0#rd" }
{ "_id" : ObjectId("5ad8a51bb5cec3000b17f3a2"), "url" : "http://mp.weixin.qq.com/s?__biz=MzAxOTMxMTAxOA==&mid=2650490009&idx=2&sn=020a9d674e4f48da10f3ed376bdda67f&chksm=83c7145cb4b09d4a153515ef56755098bccfbca92f7fb379621ffbe4177fc8431181a2d1f2cc&scene=0#rd" }
{ "_id" : ObjectId("5ad8a51bb5cec3000b17f3a3"), "url" : "http://mp.weixin.qq.com/s?__biz=MzI0NTU3NDY1NQ==&mid=2247487947&idx=1&sn=0daadc7945dd56fa7f1c7c61557646ed&chksm=e94d2f5bde3aa64dc6578e1ce9997c5cbe57fc0500222dd9939da33877168afb3297045a50f8&scene=0#rd" }
{ "_id" : ObjectId("5ad8a51bb5cec3000b17f3a4"), "url" : "http://weibo.com/ttarticle/p/show?id=2309614230624788536034" }
{ "_id" : ObjectId("5ad8a51bb5cec3000b17f3a5"), "url" : "http://mp.weixin.qq.com/s?__biz=MzA5ODU0NzQ4OA==&mid=2649879715&idx=1&sn=5bdf0a2ca64b51df037252da73fe9d1c&chksm=888ab6ecbffd3ffa97bc454aef5e490eb8c4d5bd79e7dd61c833107dd907e3b7b6600bb7d111&scene=0#rd" }
{ "_id" : ObjectId("5ad8a51cb5cec3000b17f3a6"), "url" : "http://www.qddtj.com/qdtj/961445.html" }
{ "_id" : ObjectId("5ad8a51cb5cec3000b17f3a7"), "url" : "http://weibo.com/3078765485/GcQPzAWxR" }
{ "_id" : ObjectId("5ad8a51cb5cec3000b17f3a8"), "url" : "http://weibo.com/1981850854/GcJ0KkXuz" }
{ "_id" : ObjectId("5ad8a51cb5cec3000b17f3a9"), "url" : "http://weibo.com/2824592185/GcQQ9Dpu4" }
{ "_id" : ObjectId("5ad8a51cb5cec3000b17f3aa"), "url" : "http://weibo.com/6456176195/GcQR69zDX" }
{ "_id" : ObjectId("5ad8a51cb5cec3000b17f3ab"), "url" : "http://weibo.com/5996334075/GcR3UrMgN" }
{ "_id" : ObjectId("5ad8a51cb5cec3000b17f3ac"), "url" : "http://weibo.com/3802294663/GcR5LDlyR" }
{ "_id" : ObjectId("5ad8a51cb5cec3000b17f3ad"), "url" : "http://weibo.com/2428661490/GcQZL45qh" }
{ "_id" : ObjectId("5ad8a51cb5cec3000b17f3ae"), "url" : "http://weibo.com/1762661765/GcR0LrC9O" }
{ "_id" : ObjectId("5ad8a51cb5cec3000b17f3af"), "url" : "http://weibo.com/6135218321/GcQH544Rs" }
{ "_id" : ObjectId("5ad8a51cb5cec3000b17f3b0"), "url" : "http://weibo.com/5996334075/GcR3OewDh" }
Type "it" for more
備注:第一個參數為查詢條件,空代表查詢所有


//如果不想要某個字段,可以用排除字段的方法
例如排除data字段的內容:
> db.test.find( {}, {data: 0 } )
{ "_id" : ObjectId("5ad8a51bb5cec3000b17f39d"), "url" : "http://info.zjktx.cn/urlsearch.php?info_flag=6&url=915ad2673221b5ab17ba29e24d00efc3", "error" : "BSON document too large (25962119 bytes) - the connected server supports BSON document sizes up to 16793598 bytes." }
{ "_id" : ObjectId("5ad8a51bb5cec3000b17f39e"), "url" : "http://mp.weixin.qq.com/s?__biz=MzIwOTY0NjY5NA==&mid=2247487505&idx=3&sn=8bdfc5b35eaa5eb7d2dbc2ff6247bf06&chksm=9771f518a0067c0e982d834821f9a44b7eea39f60cff8d50886175bbe1c93b27c70a8af9bfd9&scene=0#rd", "web_url" : "http://info.zjktx.cn/urlsearch.php?info_flag=6&url=f570e117571609aa0e69f141c35bc97e" }
{ "_id" : ObjectId("5ad8a51bb5cec3000b17f39f"), "url" : "http://weibo.com/6432427115/GcR5t3Fh9" }
{ "_id" : ObjectId("5ad8a51bb5cec3000b17f3a0"), "url" : "http://weibo.com/6503912228/GcR5ftPt7" }
{ "_id" : ObjectId("5ad8a51bb5cec3000b17f3a1"), "url" : "http://mp.weixin.qq.com/s?__biz=MzU1NzE3MTEzOQ==&mid=2247486132&idx=7&sn=e031435df54cc5c6dcbdab4136c73222&chksm=fc38a218cb4f2b0e0b581ea5d7ef13f95d29321b385fe51137c8cd102b715ebfb75c284aacb0&scene=0#rd", "web_url" : "http://info.zjktx.cn/urlsearch.php?info_flag=6&url=b39d555be6291870b4ec8b536e1f4657" }
{ "_id" : ObjectId("5ad8a51bb5cec3000b17f3a2"), "url" : "http://mp.weixin.qq.com/s?__biz=MzAxOTMxMTAxOA==&mid=2650490009&idx=2&sn=020a9d674e4f48da10f3ed376bdda67f&chksm=83c7145cb4b09d4a153515ef56755098bccfbca92f7fb379621ffbe4177fc8431181a2d1f2cc&scene=0#rd", "web_url" : "http://info.zjktx.cn/urlsearch.php?info_flag=6&url=12649de899b18e864e6b708b422dd159" }
{ "_id" : ObjectId("5ad8a51bb5cec3000b17f3a3"), "url" : "http://mp.weixin.qq.com/s?__biz=MzI0NTU3NDY1NQ==&mid=2247487947&idx=1&sn=0daadc7945dd56fa7f1c7c61557646ed&chksm=e94d2f5bde3aa64dc6578e1ce9997c5cbe57fc0500222dd9939da33877168afb3297045a50f8&scene=0#rd", "web_url" : "http://info.zjktx.cn/urlsearch.php?info_flag=6&url=54de9666bbd2cf523e6c2ea19ca0c324" }
{ "_id" : ObjectId("5ad8a51bb5cec3000b17f3a4"), "url" : "http://weibo.com/ttarticle/p/show?id=2309614230624788536034" }
{ "_id" : ObjectId("5ad8a51bb5cec3000b17f3a5"), "url" : "http://mp.weixin.qq.com/s?__biz=MzA5ODU0NzQ4OA==&mid=2649879715&idx=1&sn=5bdf0a2ca64b51df037252da73fe9d1c&chksm=888ab6ecbffd3ffa97bc454aef5e490eb8c4d5bd79e7dd61c833107dd907e3b7b6600bb7d111&scene=0#rd", "web_url" : "http://info.zjktx.cn/urlsearch.php?info_flag=6&url=c151dbab5c3caae7df038930e4019d67" }
{ "_id" : ObjectId("5ad8a51cb5cec3000b17f3a6"), "url" : "http://www.qddtj.com/qdtj/961445.html" }
{ "_id" : ObjectId("5ad8a51cb5cec3000b17f3a7"), "url" : "http://weibo.com/3078765485/GcQPzAWxR" }
{ "_id" : ObjectId("5ad8a51cb5cec3000b17f3a8"), "url" : "http://weibo.com/1981850854/GcJ0KkXuz" }
{ "_id" : ObjectId("5ad8a51cb5cec3000b17f3a9"), "url" : "http://weibo.com/2824592185/GcQQ9Dpu4" }
{ "_id" : ObjectId("5ad8a51cb5cec3000b17f3aa"), "url" : "http://weibo.com/6456176195/GcQR69zDX" }
{ "_id" : ObjectId("5ad8a51cb5cec3000b17f3ab"), "url" : "http://weibo.com/5996334075/GcR3UrMgN" }
{ "_id" : ObjectId("5ad8a51cb5cec3000b17f3ac"), "url" : "http://weibo.com/3802294663/GcR5LDlyR" }
{ "_id" : ObjectId("5ad8a51cb5cec3000b17f3ad"), "url" : "http://weibo.com/2428661490/GcQZL45qh" }
{ "_id" : ObjectId("5ad8a51cb5cec3000b17f3ae"), "url" : "http://weibo.com/1762661765/GcR0LrC9O" }
{ "_id" : ObjectId("5ad8a51cb5cec3000b17f3af"), "url" : "http://weibo.com/6135218321/GcQH544Rs" }
{ "_id" : ObjectId("5ad8a51cb5cec3000b17f3b0"), "url" : "http://weibo.com/5996334075/GcR3OewDh" }
Type "it" for more

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

邵阳市| 鹤峰县| 灵台县| 民丰县| 镇原县| 剑川县| 城口县| 沈阳市| 阆中市| 五原县| 潜江市| 洛南县| 兴安盟| 大丰市| 大邑县| 新竹市| 尉犁县| 襄垣县| 读书| 大名县| 乐清市| 汕头市| 溆浦县| 长宁县| 长汀县| 黄浦区| 四子王旗| 乌海市| 焉耆| 井研县| 永安市| 平谷区| 万州区| 体育| 永善县| 安吉县| 保山市| 南康市| 城步| 鄂托克前旗| 杭锦后旗|