<div dir="ltr"><div><div><div><div>Hi guys, i'm trying to make a simple query using sqlite through gdal library ( <a href="http://www.gdal.org/ogr_sql.html" target="_blank">http://www.gdal.org/ogr_sql.html</a> )<br><br></div>I have a simple table with two columns: ID and (asd*) (both columns have integer values)<br><br></div>I want the minimun value of this columns<br><br></div>My first attempt was successful<br><br>E:\Pruebas>ogrinfo -sql "select min(id) MINID from Geo1" Geo1.shp<br>INFO: Open of `Geo1.shp'<br>      using driver `ESRI Shapefile' successful.<br><br>Layer name: Geo1<br>Geometry: None<br>Feature Count: 1<br>Layer SRS WKT:<br>(unknown)<br>MINID: Integer (10.0)<br>OGRFeature(Geo1):0<br>  MINID (Integer) = 2<br><br></div>My second attempt was unsuccessful<br><br>E:\Pruebas>ogrinfo -sql "select min((asd*)) MINASD from Geo1" Geo1.shp<br>INFO: Open of `Geo1.shp'<br>      using driver `ESRI Shapefile' successful.<br>ERROR 1: SQL Expression Parsing Error: syntax error, unexpected ')'. Occured around :<br>select min((asd*)) MINASD from Geo1<br><br>E:\Pruebas>ogrinfo -sql "select min("(asd*)") MINASD from Geo1" Geo1.shp<br>INFO: Open of `Geo1.shp'<br>      using driver `ESRI Shapefile' successful.<br>ERROR 1: SQL Expression Parsing Error: syntax error, unexpected ')'. Occured around :<br>select min((asd*)) MINASD from Geo1<br clear="all"><div><br></div><div>Can someone help me with the correct expression?<br></div><div>Thanks in advance!<br><br></div>Regards<br clear="all"><br>-- <br><div class="gmail_signature"><div dir="ltr">Federico Jurio<br><div>SUR Emprendimientos Tecnológicos<br></div><div><br></div><div>Perú 345  Piso 5to Oficina "B" (C1067AAG)<br></div><div><div>Ciudad de Buenos Aires, Argentina</div><div>Tel. +54 (11) 4342-2976/84</div></div><div><div><a href="mailto:federicojurio@suremptec.com.ar" target="_blank">federicojurio@suremptec.com.ar</a></div><div><a href="http://www.suremptec.com" target="_blank">www.suremptec.com</a></div></div></div></div>
</div>