Skip to content

Instantly share code, notes, and snippets.

View estorgio's full-sized avatar
💼
Available for hire

Fortunato Estorgio estorgio

💼
Available for hire
View GitHub Profile
@estorgio
estorgio / mongodb-shell-basics.txt
Last active August 22, 2025 15:55
MongoDB Shell Basics
// List all databases
show dbs
// Switch to a database
use dbname
// List all collections in the current database
show collections
// Drop current database