For the purposes of demonstration we will work from a made-up database. The examples are created using SQLite but they are transferable to any SQL database.
This database stores information about computers, their manufacturers, properties and sale data:
* The overall database is `computer_sales`
* It contains the following [tables](/Databases/Relational_database_architecture.md#table): `manufacturer`, `model`, `sales`
* Example [fields](/Databases/Relational_database_architecture.md#field) that belong to these tables: `manufacturer_id` , `model_id` , `name`, `year_founded` , `ram` , `sale_date`
Below are the `model` and `manufacturer` tables output from the SQLite terminal client.
The model table:
````
model_id manufacturer_id name cpu_speed ram cores wifi release_date