I have a table in my database called Games. This table has a column called "players_attending" that stores varchars. I need to be able to add a new string into this column while still saving the previous strings.
For example, if one row of Games had players_attending = "bryan." I want to be able to add "matt" to players_attending but also still have bryan.
The result should be players_attending = "bryan matt."
Is this possible?