Hi I am just wondering can I use order by and union all together?
When I try the statement below
select ......... order by ID
union all
select ......... order by ID
I get an invalid SQL statement error message
If I can't use order by/union together, are there any workaround?
Thanks