Guest User

Untitled

a guest
Feb 18th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. SELECT ST_INTERSECTION(geom) FROM t1 WHERE foo = 'bar' and ST_INTERSECTS(geom)
  2.  
  3. select a.geom as A, b.geom as B from t1 a, t1 b where ST_Intersects
  4. (a.geom,b.geom) AND a.id<b.id And a.foo='bar';
Add Comment
Please, Sign In to add comment