How can I append a string to the end of an existing table value? Let’s say I have the table below:

And let’s say that Maria Anders not only lived in Berlin but also Tokyo. How would I append the string
” Tokyo” onto the City column where ContactName = Maria Anders?
P.S. I want to be able to append on to a null value as well. Thus ending up with just the one city.
Use a combination of
CONCATandIFNULL(to handle theNULLcase):However, appending seems wrong. If you want multiple City values (a many-to-many relationship), you should have a separate table for cities and a separate table for person-city relationships. Read about database normalisation.