摘要:
1.MongoDB 删除数据库的语法格式如下: db.dropDatabase() > show dbs admin 0.000GB config 0.000GB local 0.000GB sdata 0.000GB test 0.000GB > use sdata switched to db 阅读全文
摘要:
1.选择数据库 use test 2.创建用户 db.createUser({user:"test01",pwd:"12345",roles:[{role:"dbOwner",db:"test"}]}); 3.创建数据库 > use sdataswitched to db sdata4.展示数据库( 阅读全文
摘要:
1.MongoDB和传统数据库的概念区别 database database 数据库table collection 数据库表/集合row document 数据记录行/文档column field 数据字段/域index index 索引table joins 表连接,MongoDB不支持prim 阅读全文