show dbs
命令来查看所有的数据库列表,如下所示:
> show dbs
admin 0.000GB
config 0.000GB
local 0.000GB
注意:在使用show dbs
命令时,若数据库中没有存储任何数据,则不会在列表中显示出来,也就是说只有非空数据库才能通过 show dbs
命令查看。
关系型数据库 | MongoDB | 解释说明 |
---|---|---|
database | database | 数据库 |
table | collection | 数据表/集合 |
row | document | 数据行/文档 |
column | field | 字段/域 |
index | index | 索引 |
table joins | 表连接,MongoDB 中不支持 | |
primary key | primary key | 主键,MongoDB 会自动将 _id 字段设置为主键 |
{
_id: ObjectId(601e288aaa203cc89f2d31a7),
title: 'MongoDB Concept',
description: 'MongoDB is no sql database',
by: '编程帮',
url: 'http://www.biancheng.com',
tags: ['mongodb', 'database', 'NoSQL'],
likes: 100,
comments: [
{
user:'user1',
message: 'My first comment',
dateCreated: new Date(2011,1,20,2,15),
like: 0
},
{
user:'user2',
message: 'My second comments',
dateCreated: new Date(2011,1,25,7,45),
like: 5
}
]
}
本文链接:http://task.lmcjl.com/news/14098.html