In PostgreSQL databse, I have a table called hotel, which has a column called hotel_info. This hotel_info column stores json object like below
{
"hotel":{
"room_details":{
"customer_detail":{
"first_name" : "aaa"
}
}
}}
I need an update query to update value for the 'first_name' field in 'hotel_info' column. please help me to build query for this.
Thanks in advance!