I have a table tbl_data
. There is an attribute with name price
where comma separated values i need to divide these comma separated values by a particular
number.
price=2,4,6
I need something
update tbl_data set price=price/2
result required = 1,2,3