Google visualization Google图表查询语言不过滤日期范围数据

Google visualization Google图表查询语言不过滤日期范围数据,google-visualization,Google Visualization,从google图表查询过滤器中观察到一些奇怪的行为 查询: sqlQuery = "sql?tq=select * where execution_date >= '" + startDate + "' and execution_date <= '" + endDate + "' &sqlQueryID=daily_runs" "sql?tq=select * where where Date >= 'Mar 25, 2016' and Date &

从google图表查询过滤器中观察到一些奇怪的行为

查询:

    sqlQuery = "sql?tq=select * where execution_date >= '" + startDate + "'  and execution_date <= '" + endDate + "' &sqlQueryID=daily_runs"
   "sql?tq=select * where where Date >= 'Mar 25, 2016' and Date <= 'Mar 31, 2016' &sqlQueryID=daily_runs"
   "sql?tq=select * where where Date >= 'Mar 25, 2016' and Date <= 'Apr 01, 2016' &sqlQueryID=daily_runs"

sqlQuery=“sql?tq=select*其中执行日期>=”“+startDate+”,执行日期='2016年3月25日'和日期='2016年3月25日'和日期尝试使用
其中日期为“2005-01-21”

在select语句中,将
startDate
endDate
格式设置为
YYYY-MM-DD
,前缀为
date


i、 e.
选择*where execution\u date>=date'”+startDate+“…

尝试使用
其中日期为“2005-01-21”

在select语句中,将
startDate
endDate
格式设置为
YYYY-MM-DD
,前缀为
date

i、 e.
选择*where execution\u date>=date'+startDate+'…