Mongo基本使用和命令

2021-10-05 08:57:27 字數 1188 閱讀 5515

help

db.help();

db.yourcoll.help();

db.youcoll.find().help();

rs.help();

use yourdb;當建立乙個集合(table)的時候會自動建立當前資料庫

show dbs;

db.dropdatabase();

db.clonedatabase(「127.0.0.1」); 將指定機器上的資料庫的資料轉殖到當前資料庫

db.copydatabase(「mydb」, 「temp」, 「127.0.0.1」);將本機的mydb的資料複製到temp資料庫中

db.repairdatabase();

db.getname();

db; db和getname方法是一樣的效果,都可以查詢當前使用的資料庫

db.stats();

db.version();

db.getmongo();

db.getcollection(「account」);

db.getcollectionnames();

db.printcollectionstats();

db.collection.remove({});

db.adduser(「name」);

db.adduser(「username」, 「pwd123」, true); 新增使用者、設定密碼、是否唯讀

db.auth(「username」, 「123123」);

show users;

db.removeuser(「username」);

db.getpreverror();

db.reseterror();

db.yourcoll.help();

db.yourcoll.count();

db.userinfo.datasize();

db.userinfo.getdb();

db.userinfo.stats();

db.userinfo.totalsize();

db.userinfo.storagesize();

db.userinfo.getshardversion()

db.userinfo.renamecollection(「users」); 將userinfo重新命名為users

db.userinfo.drop();

Mongo 索引基本使用

語法簡介 db.collection name.createindex keys options keys 要建立索引的引數列表。如 其中key表示欄位名,1表示公升序排序,也可使用使用數字 1降序。options 可選引數,表示建立索引的設定。可選值如下 background,boolean,在後...

mongo命令錯誤

mongo mongodb shell version 3.2.8 connecting to test 2018 08 28t10 11 30.005 0800 w network thread1 failed to connect to 127.0.0.1 27017,reason errno ...

mongo索引命令

mongodb全新建立索引使用ensureindex 方法,對於已存在的索引可以使用reindex 進行重建。1.1 建立索引ensureindex mongodb建立索引使用ensureindex 方法。語法結構 db.collection name.ensureindex keys option...