I have an existing table in postgres which contains a plain old posgresql polygon. I have added a new column using
SELECT AddGeometryColumn ('public','fences','geom',4326,'POLYGON',2);I would like to populate this GIS column with the polygon data from the existing column.
The existing column...