如何在iReport中只获得前5条记录?
SQL查询:
select top 5 *
from [order]
这个静态查询正在运行,但是这个带有ireport参数的查询不起作用:
select top $P{NoOfRecords} *
from [order]
答案 0 :(得分:2)
最后我得到了解决方案 拿Report_Count变量 并设置过滤器表达式$ V {REPORT_COUNT}< = $ P {NoOfRecords}
答案 1 :(得分:0)
您也可以简单地将值传递给名为REPORT_MAX_COUNT的内置参数。