在mongodb中插入集合的方法:1.啟動mongodb服務;2.登錄mongodb數(shù)據(jù)庫;3.使用數(shù)據(jù)庫;4.使用createCollection方法插入集合;
具體步驟如下:
1.首先,在命令行中啟動mongodb服務;
net start MongoDB
2.mongodb服務啟動后,在命令行中登錄mongodb數(shù)據(jù)庫;
mongo --host 127.0.0.1
3.登錄到mongodb數(shù)據(jù)庫后,在mongodb中選擇使用一個數(shù)據(jù)庫;
use text;
4.進入到數(shù)據(jù)庫后,在數(shù)據(jù)庫中使用createCollection方法即可插入集合;
#插入一個text2集合
db.createCollection(text2)
相關命令介紹:
1)查看當前數(shù)據(jù)庫的所有集合
show collections
2)刪除指定集合
db.集合名.drop()
3)對集合進行重命名
db.需重命名的集合.renameCollection(命令后的集合)