I am having a hard time to figure out how to convert a nested array to a simple array in postgresSQL.
I got one column with the content [["one", "two", "three"]]
and I would like to alter the column to have ["one", "two", "three"]
. So basically to remove one nested array.
Anyone knows how to do it?
EDIT: I would need to update all the current values on the DB via an ALTER COLUMN