# MySQL Sample Database

## Download Sample Database
[Download Sample Database](http://www.mysqltutorial.org/wp-content/uploads/2018/03/mysqlsampledatabase.zip)

```
USE classicmodels;
SELECT * FROM customers;
```

## Sample Database Schema
- Customers: stores customer’s data.
- Products: stores a list of scale model cars.
- ProductLines: stores a list of product line categories.
- Orders: stores sales orders placed by customers.
- OrderDetails: stores sales order line items for each sales order.
- Payments: stores payments made by customers based on their accounts.
- Employees: stores all employee information as well as the organization structure such as who reports to whom.
- Offices: stores sales office data.

![MySQL-Sample-Database-Schema-min](https://s0.wailian.download/2019/01/29/MySQL-Sample-Database-Schema-min.png)

## References
- [MySQL Sample Database](http://www.mysqltutorial.org/mysql-sample-database.aspx)