我对这一点说得很新,因此,你可能不得不与我在一起。 我为网站开发了一个数据库,其中的小册子排名,我很想知道有多少表格是实现这一目标的最有效方式。
我目前有2个表格,一个称为运动员的表格,载有我所有管理者的详细情况(可能约有600人/记录),其中包括以下领域:
mid (member id - primary key)
firstname
lastname
gender
birthday
nationality
And a second table, results , which holds all of their performances and has the following fields:
mid
eid (event id - primary key)
eventdate
eventcategory (road, track, field etc)
eventdescription (100m, 200m, 400m etc)
hours
minutes
seconds
distance
points
location
第二张桌旁有2000年左右的记录,可能随着时间的推移将翻四番,这主要是因为约有30个轨道活动、10个实地、10个道路、跨国家、中继器、多波束等,如果我的第一张桌上有600名运动员,则相当于我第二张桌上的大量记录。
So what I was wondering is would it be cleaner/more efficient to have multiple tables to separate track, field, cross country etc?
我想利用该数据库,根据人民的业绩,命令他们取得成果。 如果你想更好地了解我试图效仿的情况,请看网站。