Home >Database >Mysql Tutorial >mongodb 数据库创建和删除

mongodb 数据库创建和删除

WBOY
WBOYOriginal
2016-06-07 15:11:58986browse

MongoDB创建数据库可以使用use指令: 如下: use mydb; 这样就创建了一个数据库。 这一步很重要如果什么都不操作离开的话 这个库就会被系统删除。 验证------------------------------- 然后使用插入语句: db.user.insert({name:'zhouzhigang'}); 在使用下列

MongoDB创建数据库可以使用use指令:

如下:

use mydb;

这样就创建了一个数据库。

这一步很重要如果什么都不操作离开的话 这个库就会被系统删除。

 

验证-------------------------------

然后使用插入语句:

db.user.insert({name:'zhouzhigang'});

在使用下列命令查看

show collections;      ---查看‘表’ 

show dbs                   ---查看库

如图操作:

mongodb 数据库创建和删除

mongodb 删除数据库

use mydb; 

 db.dropDatabase();


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn