मैं देखता हूं कि क्या गलत था। आपको क्वेरी के अंत में और केवल अंत में ऑर्डर देना होगा। इसने मुझे एक त्रुटि दी क्योंकि उसे लगा कि क्वेरी समाप्त हो गई है।
Select <column1>
,<column2>
,<aggregate column3>
From <Table1>
<Some joins in there>
Where <conditions>
group by <column2>, <column1>
union
select <column2>
,<column3>
,<aggregate column4>
From <Table2>
<Some more joins here>
Where <conditions>
group by <column2>, <column3>
order by <column2>
यही चाल चली।