TCP 27017: MongoDB
Last updated
Last updated
show databasesuse <database>use <database>db.createCollection("<collection>")db.getCollectionNames()db.<collection>.insert(<json>)db.<collection>.find()db.<collection>.update(<where-json>, { $set: <update-json> })db.<collection>.remove(<where-json>)