I have a table in which in one of the columns there is a json data as below
COLUMN NAME : JSON_CODE { "DataElaborazione" : "20220718", "DataMovimento" : "20220531", "DataRiferimento" : "20220715", }
I want to rename DataRiferimento to datarif
expected result
COLUMN NAME : JSON_CODE { "DataElaborazione" : "20220718", "DataMovimento" : "20220531", "datarif" : "20220715", }
see image for structure
thank you
