안녕하세요
신입 개발자 입니다.
postgres를 처음 사용합니다.(GIS 때문)
GIS도 처음이고 postgres도 처음인데 postgres에 polygons를 insert 하려고 하는데 잘 안됩니다.
INSERT INTO 테이블이름(컬럼이름) VALUES (ST_GeomFromText('POLYGON(129.043115 35.359357, ~~~)')) 이렇게 했는데 (컬럼 타입은 POLYGON 으로 하였습니다)
SQL Error [42804]: ERROR : column '컬럼명' is of type polygon but expression is of type geometry
Hint : You will need to rewrite or cast the expression.
이렇게 나타납니다. 혹 뭐가 잘못된건지, 해결방법좀 알려주시면 감사하겠습니다. |