Cool Screen <cool_screen_name90001(at)yahoo(dot)com> writes:
> UNION apparently reorders all the rows of the result
> in their natural order
No. It sorts them so it can eliminate duplicate rows, as per spec.
Try UNION ALL if you just want the two subselect results concatenated.
regards, tom lane