First you have to transform your age to be some kind of string. After that you can transform the values like this (of course you have to do this for each field):
update mytable set name="a" || name, age="b" || age;
This updates the data inside your table. If you only want the output to be prefixed you can use the following approach:
select 'a' || name as name, 'b' || age as age from mytable;
In this case there is no need to convert your age data type.