2.1 MongoDB创建数据库和表

使用数据库

use 数据库名称 // 使用数据库

创建表

// 插入一条数据的同时就会创建表
db.表名.insert()

删除表

// 删除 表
db.表名.drop()

Last updated

Was this helpful?