在postgres上创建索引

在postgres上创建索引
[1]创建普通索引
   CRREATE INDEX  idx_beijing_polyline_mapid ON beijing_polyline(mapid);
[2]创建空间数据索引
   CREATE INDEX idx_beijing_polyline_geom ON beijing_polyline USING GIST(the_geom);
   需要先安装postgis支持。


|----------------------------------------------------------------------------------------|
                           版权声明  版权所有 @zhyiwww
            引用请注明来源 http://www.blogjava.net/zhyiwww   
|----------------------------------------------------------------------------------------|

你可能感兴趣的:(在postgres上创建索引)