I have a jsonb field in PostgreSQL with the following content:
{ "object": { "urls": "A;B;C" } }
What I want to do is update the value of urls
inside the object and transform the string with semicolon separated values into a JSON array. So the result should look like this:
{ "object" : { "urls": ["A", "B", "C"] } }
I found out how to get a JSON array. Using
to_json(string_to_array(replace((json->'object'->'urls')::text, '"',''), ';'));
gives me ["A", "B", "C"]
(I think there should be a better way of doing it without the conversion json -> text -> array -> json. Suggestions are welcome)
But how do I update the urls
field with the json array now? Probably I have to use jsonb_set
?
Use
jsonb
and the functionjsonb_set()
: