I have the following structure with a MySQL table:
+----------------+----------------+----------+ | zipcode | city | state | +-----------
Add new column to your table and perfrom the query:
UPDATE tbl SET combined = CONCAT(zipcode, ' - ', city, ', ', state)