https://github.com/marcosvbras/mongo-query-guide
Descriptive tests of how to create queries within MongoDB
https://github.com/marcosvbras/mongo-query-guide
database mongodb nosql query
Last synced: about 2 months ago
JSON representation
Descriptive tests of how to create queries within MongoDB
- Host: GitHub
- URL: https://github.com/marcosvbras/mongo-query-guide
- Owner: marcosvbras
- License: apache-2.0
- Created: 2018-04-23T18:30:36.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-23T20:18:43.000Z (about 8 years ago)
- Last Synced: 2025-03-27T03:27:18.838Z (about 1 year ago)
- Topics: database, mongodb, nosql, query
- Homepage:
- Size: 1.46 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MongoDB Query Guide
## What is this?
This is a descriptive project to document how to make queries on MongoDB. Sometimes, it's tough to find the right syntax to solve your search problem, and sometimes you don't know what type of result can be returned. Thinking about it, this documentation shows what each command can do with and gives for you a equivalent SQL script to a easy comparison.
This guide was written based on [MongoDB 3.6](https://www.mongodb.com/) and contains some databases that you can use to test or to other proposes:
- **Cinema**: A database with movie informations
- **Zips**: A database with zip codes of USA cities
See more in [datasets](datasets/).
## Helpers
1. [How to import and export databases](examples/import.md)
## Topics
### Aggregation
1. [$group](examples/group.md)