ds1和ds2两个数据集都有一个参数id,要把ds1和ds2进行union all,要怎么弄?
关联数据集-https://help.fanruan.com/finereport/doc-view-125.html
_______________
为什么不直接写一个数据集里面union all?
select * from 表1 where id=${id}
union all
select * from 表2 where id=${id}
关联数据集不能union all啊
它是用来相当于内连接