I have a table with soccer scores. Whenever I add a score to one player it automatically adds NULL in the same row for the other players:
Like this:
player1 1-0, NULL, 4-1
player2 5-2, 4-1, NULL
player3 2-1, NULL, NULL
What I want is when I add a new score to a player, the Null should be replaced with that value (for example for player one it should be 1-0, 4-1 and not 1-0, NULL, 4-1)
How can I do that?