Mongodb Creating Database & Collections:: Mydb Switched To DB Mydb
Mongodb Creating Database & Collections:: Mydb Switched To DB Mydb
0.78125GB
0.23012GB
Your created database (mydb) is not present in list. To display database you need to insert
atleast one document into it.
>db.movie.insert({"name":"tutorials point"})
>show dbs
local
mydb
test
0.78125GB
0.23012GB
0.23012GB
Here movie is the new collection name, (Table). Which will be created under Database mydb.
In mongodb default database is test. If you didn't create any database then collections will be
stored in test database.