Jun 28, 2024
brew tap mongodb/brew
brew update
brew install mongodb-community@6.0
brew services start mongodb/brew/mongodb-community
mongo
(मैंगो डीबी शेल को एक्टिवेट करने के लिए)use <database_name>
show dbs
(डेटाबेस दिखाने के लिए)show collections
(कलेक्शंस दिखाने के लिए)db.<collection_name>.find()
db.<collection_name>.insert({key: value, ...})