ALTER TABLE public."MyData"
ADD COLUMN geom geometry(POINT,4326)
在执行上述查询时,出现以下错误
错误:类型“几何”不存在第2行:添加列几何 几何(POINT,4326)
请帮助我解决这个问题
答案 0 :(得分:2)
您必须首先安装PostGIS,在当前数据库中启用它,并确保用户可以访问它。
--is it installed?
select postgis_version();
-- enable postgis
create extension postgis();
-- ensure the schema containing PostGIS is in the user search path:
show search_path;