Is it guaranteed that order of two parts of the union all query will be given in the particular order? I.e. that the result of this query:
select 'foo' from dual
union all
select 'bar' from dual
Will always be
foo
bar
and not this
bar
foo
?
I used Oracle syntax but what I want to know is what does ISO Standard says about this.