MongoDB Show all contents from all collections

前端 未结 8 1778
刺人心
刺人心 2020-12-07 07:45

Is it possible to show all collections and its contents in MongoDB?

Is the only way to show one by one?

8条回答
  •  天命终不由人
    2020-12-07 08:04

    Step 1: See all your databases:

    show dbs
    

    Step 2: Select the database

    use your_database_name
    

    Step 3: Show the collections

    show collections
    

    This will list all the collections in your selected database.

    Step 4: See all the data

    db.collection_name.find() 
    

    or

    db.collection_name.find().pretty()
    

提交回复
热议问题