ST_Intersects
ST_Intersects*1 — ジオメトリ/ジオグラフィが「空間的にインタセクトする」(空間に共有部分がある)場合には,TRUEを返します.そうでない(非接続)場合はFALSEを返します.ジオグラフィ -- 許容量は0.00001メートルです(どの閉じた点でもインタセクトを考慮されます).
千代田区(t13101),中央区(t13102)及び新宿区(t13104)というテーブルを作り,ST_Intersectsで隣接しているかどうか調べる。
create table t13101 as select st_union from p13wi offset 0 limit 1; create table t13102 as select st_union from p13wi offset 1 limit 1; create table t13104 as select st_union from p13wi offset 3 limit 1; select ST_Intersects(t13101.st_union, t13102.st_union) from t13101, t13102; select ST_Intersects(t13104.st_union, t13102.st_union) from t13104, t13102;
4行目千代田区と中央区はT(隣接している)
5行目新宿区と中央区はF(隣接していない)
後処理
drop table t13101;drop table t13102;drop table t13104;
次のためにcode13wiも作っておく
create table code13wi as select aac from p13wi;