I want to display such data:
Column1 Column2 ----------------------- TotalAvg 60% A1 50% B1 70% Z1 60%
My sql script looks something like this:
select 'Total Avg' as Column1,'60%' as Column2 union select Column1,Column2 from tblAvg
and the result that I get looks something like this:
Column1 Column2 ------------------------ A1 50% B1 70% TotalAvg 60% Z1 60%
Question: I want to delete the default order and get the result in the order in which we make the union tables.
source share