where 检验日期 >= TO_DATE('${开始时间}','YYYY-MM-DD')
我本来是选择日期的 这个条件能否改为我选择'${年份}' 和'${月份}'
比如我这两个参数选择 2022年 8月 我需要这两个分开选择
我的检验日期》8月1日 AND 《8月31日
where 1=1
and mytiem >=to_date('${CONCATENATE(year_code,"-",month_code,"-01")}','yyyy-mm-dd')
and mytiem <=to_date('${DATEINMONTH(CONCATENATE(year_code,"-",month_code,"-01"),-1)}','yyyy-mm-dd')
WHERE 检验日期>='${dateEditor0}' and 检验日期<='${DATEINMONTH(dateEditor0,-1)}'
---------------
注意上图中蓝色背景以及日期格式
那你可以这样啊
substr(检验日期,1,4)='${年份}' and substr(检验日期,6,2)='${月份}'