update t
set value = concat(value, ',z')
where id = 1;
0
Courageous Chronicler
On
To answer your secondary question, yes.
If you run Select value from table where id = 1 it will return a,z. that means that if you are going to use it again in queries, you will quite possibly need to utilize a Split() type function, dependent on what you're doing with it.
0
rushan
On
The best and simplest way to do this is the following query according to me :
update table1 set value = concat(value,'z') where id = 1
You can use
update: