зеркало из
https://github.com/iharh/notes.git
synced 2025-10-30 05:06:05 +02:00
29 строки
856 B
Plaintext
29 строки
856 B
Plaintext
https://www.mongodb.com/docs/mongodb-shell/
|
|
https://www.mongodb.com/docs/mongodb-shell/install/
|
|
https://github.com/mongodb-js/mongosh
|
|
|
|
sudo apt-get update
|
|
sudo apt-get install mongodb-mongosh
|
|
|
|
mongodb://<usr>:<pwd>@localhost:27017/test
|
|
|
|
https://www.mongodb.com/docs/mongodb-shell/
|
|
show dbs
|
|
use ...
|
|
show collections
|
|
db.getCollectionNames()
|
|
[ '...', ... ]
|
|
db.getCollectionInfos()
|
|
https://www.mongodb.com/docs/manual/reference/method/db.getCollectionInfos
|
|
...
|
|
|
|
https://www.mongodb.com/docs/mongodb-shell/crud/
|
|
https://www.mongodb.com/docs/mongodb-shell/crud/read/
|
|
db.<coll>.find()
|
|
|
|
print output to file
|
|
https://stackoverflow.com/questions/22565231/printing-mongo-query-output-to-a-file-while-in-the-mongo-shell
|
|
|
|
???
|
|
https://www.mongodb.com/docs/manual/reference/method/
|