|
Unfortunately, unclear as to what is requested by the reporter.
From the page the reporter was on, it states:
You can switch to non-existing databases. When you first store data in the database, such as by creating a collection, MongoDB creates the database. For example, the following creates both the database myNewDatabase and the collection myCollection during the insert() operation:
use myNewDatabase
|
db.myCollection.insert( { x: 1 } );
|
|
And we provide a link to the getting started guide
https://docs.mongodb.org/getting-started/shell/
|