创建数据库
1
use mydb
2
show dbs
3
db.movie.insert({"name":"tutorials point"})
删除数据库
1
>use mydb
switched to db mydb
>db.dropDatabase()
>{ "dropped" : "mydb", "ok" : 1 }
db.site.drop()
创建集合
1
db.createCollection("mycollection")
2
db.createCollection("mycol", { capped : true, autoIndexID : true, size : 6142800, max : 10000 } )
3
db.tutorialspoint.insert({"name" : "tutorialspoint"})
删除集合
1
db.mycollection.drop()
插入文档
>db.col.insert({title: 'MongoDB 教程', description: 'MongoDB 是一个 Nosql 数据库', by: '菜鸟教程', url: 'http://www.runoob.com', tags: ['mongodb', 'database', 'NoSQL'], likes: 100 })