摘要: MongoDB常用操作 一、查询 find方法 db.collection_name.find(); 查询所有的结果: select * from users; db.users.find(); 指定返回那些列(键): select name, skills from users; db.users 阅读全文
posted @ 2019-06-13 23:24 aspsea 阅读(129) 评论(0) 推荐(0) 编辑