Google Fusion Table SQL query where clause - only AND works, not OR?

老子叫甜甜 提交于 2019-12-04 09:53:36

OR isn't supported - look at the API ref filter_conditions

IN is supported - so you can IN all your OR conditions for SType

Excuse me if I'm saying foolery, since I never have use fusion-tables, but OR queries can be split into 2 queries, one for each condition.

The main problem in this workaround is that you must implement the ORDER in programming language when merging both queries.

You can use IN instead of OR because OR is not supported by fusion tables.

http://www.w3schools.com/sql/sql_in.asp

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!