I had a column in PostgreSQL which has text datatype (data text)
the data in this column will be like
[
{"code":"ABC","Value":"A1"},
{"code":"Name","Value":"Ramesh"},
{"code":"Age","paramValue":"24"}
]
I need to add new parameter to it such as
{"code":"Mobile","paramValue":"9XXXXXXXXX"}
the data would be like
[
{"code":"ABC","Value":"A1"},
{"code":"Name","Value":"Ramesh"},
{"code":"Age","paramValue":"24"},
{"code":"Mobile","paramValue":"9XXXXXXXXX"}
]
I tried many ways but I couldn't succeed can i get suggestion on this