If you can do it in two queries, and they have the same fields, just use UNION ALL to put the two queries together, would be the easiest.
SELECT Field1, Field2, Field3
FROM Table1
Where Something
UNION ALL
SELECT Field1, Field2, Field3
FROM Table1
Where SomethingElse