Hi,
You can use the union all operator:
select *, '1' as seq from table where sequence=1
union all
select *, '2' as seq from table where sequence=2
The "'1' as seq" in the query is for you to be able to tell the difference in your logic.
Hope this helps. Please be more specific on the tables structures if it doesn't.