以MySQL数据库【精确:年月日】查询为例:
-- 控件的返回值类型:yyyy-MM-dd
select * from tabname where LEFT(日期字段,10) = '${日期控件}'
或(范围查询)
select * from tabname where LEFT(日期字段,10) between '${起始日期}' and '${截止日期}'
本年的话
select * from tabname where LEFT(日期字段,4) = '${year(日期控件)}'
上一年
select * from tabname where LEFT(日期字段,4) = '${year(日期控件)-1}'
本月
select * from tabname where LEFT(日期字段,7) = '${LEFT(日期字段,7)}'