Introduction to MongoDB
MongoDB is a document-oriented NoSQL database designed for scalability and flexibility.
Document Database Concepts
| SQL Term | MongoDB Term |
|---|---|
| Database | Database |
| Table | Collection |
| Row | Document |
| Column | Field |
| JOIN | Embedded documents / $lookup |
| Primary Key | _id field |