I would like to combine two result set together, but there is the case where one, or the other result set is empty. What is happening is that if one of the result set is empty then nothing get return. The way I am doing this now is based off of this SO question. So basically my sql looks like this
Select * from (Select err.is,... FROM table1 err), (Select arr.id,... FROM table2)
Is there a work around?