给你一个参考
11.cpt
以MySQL数据库【精确:年月日】查询为例:
-- 控件的返回值类型:yyyy-MM-dd
select * from tabname where LEFT(日期字段,10) between '${起始日期}' and '${截止日期}'
=============sqlserver
SUBSTRING(日期字段,1,10) 或 LEFT(日期字段,10)
=============oracle
substr(日期字段,1,10)
你数据集中写成between to_date('${time1}','yyyy-mm-dd') and to_date('${time2}','yyyy-mm-dd')
数据集 ds1,SQL语句 供参考
https://help.fanruan.com/finereport/doc-view-420.html