A production-style relational database designed to simulate a real-world e-commerce platform.
This project demonstrates database design, normalization, and advanced SQL querying.
This database models the core functionality of an e-commerce system, including:
- User management
- Product catalog
- Order processing
- Sales tracking
| Table Name | Description |
|---|---|
| Users | Stores customer information |
| Products | Stores product details |
| Orders | Stores order transactions |
| Order_Items | Stores items within each order |
- One User β Many Orders
- One Order β Many Order_Items
- One Product β Many Order_Items
- β Well-structured relational schema
- β Use of Primary & Foreign Keys
- β Normalized database design
- β Sample data for testing
- β Supports analytical SQL queries.