docker ps
docker exec -it 098e580a70f6 bash
mongosh
是因为Mongodb 6.0版本之后命令从mongo改为mongosh
mogondb中的一些查找、删除命令:
show dbs
use xxx
show collections
db.collectionName.find() // 查看集合中的所有数据
db.collectionName.remove({}) // 删除所有数据但保留集合
https://blog.csdn.net/m0_37298500/article/details/121521505
标签:collectionName,mongo,show,db,命令,docker From: https://www.cnblogs.com/techgy/p/18289572