Hi,<div><br></div><div>By grouping by ID, you ask to generate as many rows as there are distinct ids in the table.</div><div><br></div><div>You could add a surrounding query collecting the grouped linestring to get only one row:</div>
<div><br></div><div>select st_collect(</div><div><div style="font-family:arial,sans-serif;font-size:13px">        SELECT ST_Multi(ST_Collect(geom_way)) as singlegeom</div><div style="font-family:arial,sans-serif;font-size:13px">
<span style="white-space:pre-wrap">     </span> FROM emily_route</div><div style="font-family:arial,sans-serif;font-size:13px">         group by id</div></div><div style="font-family:arial,sans-serif;font-size:13px">);</div><div class="gmail_extra">
<br><br><div class="gmail_quote">On 26 November 2012 16:56, Raffaello Bertini <span dir="ltr"><<a href="mailto:raffaellobertini@gmail.com" target="_blank">raffaellobertini@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi there,<div>I need to create a field multilinestring / linestring, where the values are taken from a column of linestring</div><div><br></div><div>I need a result that consist in only one row and one col.<br>here my snipett sql:<br>


<br><div><div>SELECT ST_AsText(ST_Multi(ST_Collect(geom_way))) as singlegeom</div><div><span style="white-space:pre-wrap">        </span> FROM emily_route</div><div>group by id</div></div></div><div><br></div>
<div>
but there are many rows as the table itself. and i don't know even if the 'singlegeom' is the <br>"array of the all the geometry in the emili_route table".<br><br>If i remove the group by the results is an empty table 1x1 (only the table dimension is right:))<br>


<br>any helps please?</div>
<br>_______________________________________________<br>
postgis-users mailing list<br>
<a href="mailto:postgis-users@lists.osgeo.org">postgis-users@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/cgi-bin/mailman/listinfo/postgis-users" target="_blank">http://lists.osgeo.org/cgi-bin/mailman/listinfo/postgis-users</a><br>
<br></blockquote></div><br></div>