I am trying to figure out the best way to store some data in my database. I plan on joining 3 different tables.
users table
fighters table
moveset table
In the fighters table I have a row for 'moveset' in which I am trying to figure out a way that move_id's from the moveset table can then be associated within the fighters table under the moveset row so each fighter can list a bunch of moves that belongs to them.
Ex.
fighters table has
fighter_id,
fighter_name,
moveset
moveset table has
move_id,
move_name,
move_damage
Multiple move_id's need to get put in the moveset row in the fighters table.
Any help on how to set this up properly in mysql?