|
You might want to create separate tables for every redundant fields, Then link the tables with primary key foreign key relationships.
To help you out, try drawing an ERD diagram first before creating the table.
Example:
1. Players (Player_ID[PK], FirstName, LastName, POS_ID[FK], THR_DI[FK])
2. POS (POS_ID[PK], POS)
3. THR (THR_ID[PK], THR)
3. Stats (Stats_ID[PK], Player_ID[FK], 1P, 1PR, 2P, 2PR, 3P, 3PR, 4P, 4PR, 5P, 5PR)
This example might not be the best, cause I don't have the whole dataset for your database, but i hope you get the idea.
__________________
Warm Regards,
WebGuy
ANTARAMEDIA | explore the possibilities
Please login or register to view this content. Registration is FREE
|