我必须创建表格来存储不同实体的不同区域的天气。为此创建表结构的最佳方法是什么。例如:
maximum temp for Wales
year jan feb
1950 0.5 2.5
1955 1. 2
.
.
2017 0.5 2
minimum temp for Wales
year jan feb
1995 -5 -7
.
.
2018 -8 -9
最好为每个城市创建多个表以进行不同的录制,还是有更好的方法。
答案 0 :(得分:1)
areas table
-----------
id
name
temperatures table
------------------
id
area_id
year
month
min_temp
max_temp