控件设置可以通过下拉框或者文本选择报表显示多少条数据,例:前10条,后10条或者10-20条这种
和参数一样,在sql去拼接脚本。
以mysql为例:
前10条 -- order by 字段 asc limit 10
后10条 -- order by 字段 desc limit 10
10-20条 -- order by 字段 desc limit 10,10
意思懂了,实现不难了吧!