I am using postgresql 9.4
I have one json column in the table and it contains the value:
"{
"title" : "risk",
"name" : "David"
}"
I have to perform two functionality
- Update the name value to "John"
- Insert the "city" : "paris"
my final value should be in my table column
"{
"title" : "risk",
"name" : "John",
"city" : "paris"
}"
Basically, I want update and insert query for this json column and I can not change the database to higher version