得到的结果集是这样的 可能有一个 也可能有很多个 是循环根据条件查出来的 怎么样合并呀 求高手解惑
解决方案
50
假如字段相同, 可以直接用 UNION ALL 合并
select a, b,c from tableA where 条件A
union all
select a,b,c from tableA where 条件B
union all
……
select a, b,c from tableA where 条件A
union all
select a,b,c from tableA where 条件B
union all
……
50
要求结果贴出来