I am trying to filter a fusion table using the WHERE clause in order to display land areas below a certain size. I am not sure if it is a simple problem with the syntax but this filter will not work for me. Here is the code:
var layer = new google.maps.FusionTablesLayer({
query: {
select: 'Geometry',
from: 4310315,
where: 'rollingarea' < 400,
}
});
I have tried different variations such as where ‘rollingarea < 40’ & “‘rollingarea’ < 400” but cant get it to work.
Any help would be much appreciated
Looking at your table, the column name is “ROLLING AREA”.
Try:
“‘ROLLING AREA’ < 400”