आप इसे आसानी से UNION ALL
. के साथ कर सकते हैं . कुंजी यह है कि master_code
फ़ील्ड total
string स्ट्रिंग के समान डेटा प्रकार होना चाहिए तो आपको इसे रूपांतरित करना होगा:
select cast(master_code as varchar(10)) master_code, jan
from yourtable
union all
select 'Total', sum(jan)
from yourtable
देखें SQL Fiddle with Demo
या आप 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
देखें SQL Fiddle with Demo