player_id,first_name,last_name,position_id,team_id....
I'm creating baseball player pages.....Some players play multiple positions, so I'm trying to figure out the best way to store and retrieve those with multiple position_id's.
For example one player may only play one position, so his record may look like this:
player_id,first_name,last_name,position_id,team_id....
1415,Joe,Schmoe,4,15
However some players may have a record that looks like this:
player_id,first_name,last_name,position_id,team_id....
33415,John,Doe,'4,8',15
Is it ok to store a comma separated list of position_id's in one row?
since some players may have one postiion and some may have 2 or 3 different position_ids...How would I got about retrieving and displaying those?