<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
<META NAME="Generator" CONTENT="MS Exchange Server version 5.5.2653.12">
<TITLE>Overlaps query</TITLE>
</HEAD>
<BODY>

<P><FONT SIZE=2 FACE="Arial">Hi,</FONT>
</P>

<P><FONT SIZE=2 FACE="Arial">I want to query a geometry column using the PostGIS function 'overlaps'. The query shoult return the number of overlapping geometries in a table.</FONT></P>

<P><FONT SIZE=2 FACE="Arial">Here is the query I tried:</FONT>
</P>

<P><FONT SIZE=2 FACE="Arial">SELECT COUNT(a.id) FROM tbl1 a, tbl1 b WHERE OVERLAPS(a.geom, b.geom) AND a.id <> b.id</FONT>
</P>

<P><FONT SIZE=2 FACE="Arial">When I run the query, it takes a long time (96528ms) until PostGIS returns the result although my table only contains 10 rows. Is there a possibility to increase the performance of this query?</FONT></P>

<P><FONT SIZE=2 FACE="Arial">Regards,</FONT>
<BR><FONT SIZE=2 FACE="Arial">Thorsten</FONT>
</P>

</BODY>
</HTML>