Beginner's question : I am creating a Fusion Table with one of the columns being a column of tags, e.g. :
The Filter dropdown (blue) provides me with checkboxes for the 5 above examples, but allows me also to enter a specific text as a query. How must I proceed to enter the equivalent of :
Thanks in advance
You can use the WHERE IN ('New York', 'London', 'Paris')
Your IN (xxx,xxx,xxx) will depend on list of cities. The IN operator implies an OR condition. Not sure how an AND condition would work in your case. See: https://developers.google.com/fusiontables/docs/v1/sql-reference#Select and search for <column_condition>