Bạn có thể dễ dàng thực hiện việc này với UNION ALL
. Điều quan trọng là master_code
đó trường phải có cùng kiểu dữ liệu với chuỗi total
vì vậy bạn sẽ phải chuyển đổi nó:
select cast(master_code as varchar(10)) master_code, jan
from yourtable
union all
select 'Total', sum(jan)
from yourtable
Hoặc bạn có thể sử dụng GROUP BY with ROLLUP
:
select
case
when master_code is not null
then cast(master_code as varchar(10)) else 'total' end master_code,
sum(jan) Jan
from yourtable
group by master_code with rollup