I want to get all the entries from google fusion table which satisfies the condition in a given date Time column > specific time
https://www.googleapis.com/fusiontables/v2/query?sql=SELECT * FROM 1WjowbI77j1WFcn3IEtbwBymhVZh8jfmP_dg1epd9 WHERE Date = '2015-02-23' AND Time > '10:25:04'&key=AIzaSyCALoSz00ZY3zTL1D_xUTD9GMb3T1ocBdU
But it gives me all the entries as result..
fusion table :
It is assumed that the type of
Time
column isDate/Time
and format isH:mm:ss AM/PM
In that case, it seems the filtering on
Date/Time
column is not supported.According to Row and Query SQL Reference documentation:
Having said that, you could consider to apply filtering to the returned results as demonstrates the following JavaScript example: