Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

MongoDB mongosh 创建数据库


使用 mongosh 创建数据库

使用 mongosh 连接到数据库后,您可以在终端中键入 db 来查看您正在使用的数据库。

如果您使用了从 MongoDB Atlas 仪表盘提供的连接字符串,则应该已连接到 myFirstDatabase 数据库。


显示所有数据库

要查看所有可用的数据库,请在您的终端中键入 show dbs

请注意 myFirstDatabase 没有列出。这是因为数据库是空的。空数据库本质上是不存在的。


更改或创建数据库

您可以通过键入 use 然后是数据库名称来更改或创建一个新数据库。

示例

创建一个名为“blog”的新数据库

use blog
自己试试 »

我们现在位于 blog 数据库中。

请记住:在 MongoDB 中,数据库只有在获得内容后才会真正创建!


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.