Google Fusion Table SQL query where clause - only AND works, not OR?
My SQL query is: SELECT * FROM 1910640 WHERE stype='P' OR stype='ERC' OR stype='PERC' ORDER BY ST_DISTANCE(geometry, LATLNG(-0.12623619999999391,51.5001524)) LIMIT 6 This results in a "parseerror". If I replace OR with AND the query returns success: SELECT * FROM 1910640 WHERE stype='P' AND stype='ERC' AND stype='PERC' ORDER BY ST_DISTANCE(geometry, LATLNG(-0.12623619999999391,51.5001524)) LIMIT 6 Anyone else ran into this with Fusion Tables and have a solution/workaround? The API doc does imply only AND is allowed, which came as a big surprise to me. http://code.google.com/apis/fusiontables