mongo 常用命令
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mongo 常用命令相关的知识,希望对你有一定的参考价值。
一、连接mongo
mongo 127.0.0.1:27016 -u "mongotest" -p --authenticationDatabase "testDB"
二、基本操作
1、show dbs; #查看所有库
2、use test1; #选中某库和mysql use一样
3、show collections; #查看所有的表
4、db.getCollection(‘test_table‘).find({"city": "成都"}); #查询
5、db.getCollection("test_table").find({"rent_type": "整租"}, {"lng": 1,"lat": 1}); #查询
6、db.getCollection("test_table").distinct("city"); # 去除
三、索引操作
以上是关于mongo 常用命令的主要内容,如果未能解决你的问题,请参考以下文章