A relational database built with Microsoft SQL Server. Models a simple order management system with customers, employees, products, and orders.
- customer – customer info (name, city, phone)
- employee – employee info (name, age, city, salary)
- product – product info (name, price, expiry date)
- orders – links customers and employees to purchases
- order_details – junction table linking orders to products
- Open SQL Server Management Studio (SSMS)
- Run
schema.sqlto create the tables - Run
data.sqlto insert the sample data
- Microsoft SQL Server
- SSMS or any SQL Server-compatible client
