Re: [sqlite] Parentheses in column name

2014-12-23 Thread Stephan Beal
On Mon, Dec 22, 2014 at 9:19 PM, Federico Jurio < federicoju...@suremptec.com.ar> wrote: > E:\Pruebas>ogrinfo -sql "select min("(asd*)") MINASD from Geo1" Geo1.shp > You're using double quotes inside double quotes, which cannot parse how you expect it to. You need to change the outer quotes (arou

Re: [sqlite] Parentheses in column name

2014-12-23 Thread RSmith
On 2014/12/22 22:19, Federico Jurio wrote: Hi guys, i'm trying to make a simple query using sqlite through gdal library ( http://www.gdal.org/ogr_sql.html ) I have a simple table with two columns: ID and (asd*) (both columns have integer values) I want the minimun value of this columns My fir

[sqlite] Parentheses in column name

2014-12-23 Thread Federico Jurio
Hi guys, i'm trying to make a simple query using sqlite through gdal library ( http://www.gdal.org/ogr_sql.html ) I have a simple table with two columns: ID and (asd*) (both columns have integer values) I want the minimun value of this columns My first attempt was successful E:\Pruebas>ogrinfo