帆软报表日志数据库logdb怎样支持参数查询?

比如我想查某一天的数据,现在只能这样写:

select * from fine_record_execute  where todate(time) between '2021-03-16 00:00:00' and '2021-03-16 23:59:59'

image.png

怎样实现参数查询?

如果是oracle的话,可以这样写:select * from fine_record_execute  where trunc(todate(time)) =to_date('${date1}','yyyy-mm-dd') 

但报表日志的hsql不支持

FineReport hotfog119 发布于 2021-3-17 13:57 (编辑于 2021-3-17 14:02)
1min目标场景问卷 立即参与
回答问题
悬赏:3 F币 + 添加悬赏
提示:增加悬赏、完善问题、追问等操作,可使您的问题被置顶,并向所有关注者发送通知
共2回答
最佳回答
0
张洪威Lv6高级互助
发布于2021-3-17 13:59(编辑于 2021-3-17 14:07)

select * from fine_record_execute 

where todate(time)> '${a+" 00:00:00"}' and todate(time)<'${b+" 23:59:59"}'

参数的写法。

image.png

最佳回答
0
LSQ000Lv5中级互助
发布于2021-3-17 14:08(编辑于 2021-3-17 14:09)
  • 3关注人数
  • 454浏览人数
  • 最后回答于:2021-3-17 14:09
    请选择关闭问题的原因
    确定 取消
    返回顶部