I want to add a record into access. The column name is Names: Now I want to add data into existing data, without deleting or adding the existing record
suppose:
id name     original name
1  blue       shoes   
2  black      shoes 
3  green      shoes
Now I want it like this suppose the record one is already there, and when user add the next two entries it should be like this
moreover: if a user send a new value to the column_name, so the value must be add to the name column without omitting the other value. If it is like blue and you send name value = black as a new value so it should look like blue black
id name    original name
1  shoes   blue black 
So how can I do this with an SQL statement