I would like to append some text to every cell in each column of my table to act as a symbol for that particular column. For example say my table is as follows (all fields are type character varying):
name age location james 45 france simon 33 usa ben 76 china
I would like to modify it to be:
name age location ajames b45 cfrance asimon b33 cusa aben b76 cchina
Does anyone have any suggestions as to how I can do this?