Update json string column with proper json in Postgres SQL – Postgresql
I have a column which type is JSON but it contains JSON strings like this: "{"a":1,"b":2,"c":3}" I want to update the values in the column with proper JSON objects without the quotes and escapes like this: {"a":1,"b":2,"c":3} I've tried the…