Implementation of a NoSQL database for a generic hospital management system.
- Look in the dataset directory for the README file to generate the dataset:
- Create a MongoDB account and login with your credentials.
- Create NoSQL database to fit personal needs, i.e. creating "collections" for reimbursement purposes, provider info, etc.
- Access MongoDB Atlas for cloud services and fire up a cluster (M0) for secure access and deployment.
- Many functions are equivalent to SQL databases (see below), yet many are unique to NoSQL/MongoDB.
- Atlas allows for real-time data analysis directly connected to database, usually faster than traditional databases (see below).
video_cloud.mp4
- Accessing and firing up a cloud cluster and settings.
- Performing real-time analysis and creating a LIVE dashboard.
SELECT.mp4
- SQL SELECT statement is equivalent to MongoDB's $MATCH function
JOIN.mp4
- SQL JOIN statement is equivalent to MongoDB's $LOOKUP function