postgresql安装postgis扩展模块

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/xinshijimanon/article/details/80521947

为postgresql安装postgis扩展模块:

1、安装postgis

2、在指定数据库下执行下面语句

CREATE EXTENSION postgis

3、验证:执行下面语句不报错即可

SELECT ST_SetSRID(ST_Point(-87.71,43.741),4326),ST_GeomFromText('POINT(-87.71 43.741)',4326)

猜你喜欢

转载自blog.csdn.net/xinshijimanon/article/details/80521947