ST_Equals
定义
ST_Equals 比较两个 ST_Geometries,如果这两个几何完全相同,则返回 1 (Oracle) 或 t (PostgreSQL);否则返回 0 (Oracle) 或 f (PostgreSQL)。
语法
sde.st_equals (g1 sde.st_geometry, g2 sde.st_geometry)
返回类型
整型(布尔)
示例
城市 GIS 技术人员怀疑 bldgs 表中的某些数据存在重复。为减轻顾虑,他查询该表,以确定是否存在相等的覆盖区多面。
通过以下语句创建并填充 bldgs 表。bldg_id 列唯一标识建筑物,footprint 存储建筑物的几何。
Oracle
CREATE TABLE bldgs (bldg_id integer unique, footprint sde.st_geometry); INSERT INTO BLDGS (bldg_id, footprint) VALUES ( 1, sde.st_polygon ('polygon ((0 0, 0 10, 10 10, 10 0, 0 0))', 0) ); INSERT INTO BLDGS (bldg_id, footprint) VALUES ( 2, sde.st_polygon ('polygon ((20 0, 20 10, 30 10, 30 0, 20 0))', 0) ); INSERT INTO BLDGS (bldg_id, footprint) VALUES ( 3, sde.st_polygon ('polygon ((40 0, 40 10, 50 10, 50 0, 40 0))', 0) ); INSERT INTO BLDGS (bldg_id, footprint) VALUES ( 4, sde.st_polygon ('polygon ((0 0, 0 10, 10 10, 10 0, 0 0))', 0) );
PostgreSQL
CREATE TABLE bldgs (bldg_id integer unique, footprint st_geometry); INSERT INTO bldgs (bldg_id, footprint) VALUES ( 1, st_polygon ('polygon ((0 0, 0 10, 10 10, 10 0, 0 0))', 0) ); INSERT INTO bldgs (bldg_id, footprint) VALUES ( 2, st_polygon ('polygon ((20 0, 20 10, 30 10, 30 0, 20 0))', 0) ); INSERT INTO bldgs (bldg_id, footprint) VALUES ( 3, st_polygon ('polygon ((40 0, 40 10, 50 10, 50 0, 40 0))', 0) ); INSERT INTO bldgs (bldg_id, footprint) VALUES ( 4, st_polygon ('polygon ((0 0, 0 10, 10 10, 10 0, 0 0))', 0) );
通过 equal 谓词将 bldgs 表与其本身进行空间连接,只要发现两个多面相等,就会返回 1。b1.bldg_id<>b2.bldg_id 条件不用将几何与其本身进行比较。
Oracle
SELECT UNIQUE (b1.bldg_id), b2.bldg_id FROM BLDGS b1, BLDGS b2 WHERE sde.st_equals (b1.footprint, b2.footprint) = 1 AND b1.bldg_id <> b2.bldg_id; BLDG_ID BLDG_ID 4 1 1 4
PostgreSQL
SELECT DISTINCT (b1.bldg_id), b2.bldg_id FROM bldgs b1, bldgs b2 WHERE st_equals (b1.footprint, b2.footprint) = 't' AND b1.bldg_id <> b2.bldg_id; bldg_id bldg_id 1 4 4 1
7/10/2012