museums data structure
The museums
database stores data about museums and the cities that they reside in. The recipes using this data source are based on you being part of a tourism company. The following diagram shows the relationship between museums and cities, where a single city can have many museums:
museums
The museums
table contains the following details for each museum:
Field |
Description |
Example |
---|---|---|
|
Identification for the museum |
|
|
Museum's name |
|
|
Identification for the city; it references to the cities' data |
|
cities
The cities
table contains the following details for each city:
Field |
Description |
Example |
---|---|---|
|
Identification for the museum |
|
|
City's name |
|
|
City's country |
|