timwis / soda-geoservices

Query Esri Geoservices using a SODA2-style API
MIT License
7 stars 0 forks source link

Concatenate strings #5

Open timwis opened 8 years ago

timwis commented 8 years ago

Esri docs for v10.2 suggest CONCAT(field1, field2) should work, but it doesn't seem to. Example

It does seem to work when used in where though (example)

nixta commented 8 years ago

Hey @timwis, these SQL functions you link to in the docs are supported in where clauses only. Also relevant to #4. See this too, where the only context they're discussed is in the where clause.

timwis commented 8 years ago

Great! You're right, it works with where clauses! That's good -- we can always handle select/outFields in post-processing. Thanks Nick