In raw form, I have data with 2 columns: skills in welsh and stats for that skill. For storing these information in a database, would it be best to combine the stats with the categories, or split them up as below?
WELSH_SKILLS_TABLE
----------------------------------------------------
| SKILL_ID | SKILL
----------------------------------------------------
| 0 | CAN'T SPEAK
----------------------------------------------------
WELSH_STATS_TABLE
----------------------------------------------------
| SKILL_FK | COUNT
----------------------------------------------------
| 0 | 235
----------------------------------------------------
Instinctively, the laid out method seems to be correct, but for such a simple task, also seems like overkill?
Thanks!