У меня есть два запроса в первом выводе подсчета запросов, основанном на продукте
select 'Retail' as product ,count(1) as policy_count from g_hdfclms where lead_status in('rtp','qc_pr') and lead_id_lms not like ('%_01')
union
select 'Group' As [Group],count(1) as grp_policy from g_proposal_m where lead_status in('rtp','qc_pr')
union
select 'Renewal' As Renewal, count (1) as policy_renewal from g_hdfclms where lead_status in('rtp','qc_pr') and lead_id_lms like ('%_01')
, в то время как другой запрос выводит слияние и показывает общее количество каждого продукта
select(select count(*) as retail_policy from g_hdfclms where lead_status in('rtp','qc_pr') and lead_id_lms not like ('%_01'))
+(select count(1) as grp_policy from g_proposal_m where lead_status in('rtp','qc_pr'))
+(select count (*) as policy_renewal from g_hdfclms where lead_status in('rtp','qc_pr') and lead_id_lms like '%_01')
AS total_policy
Теперь я хочу показать счетчик Total_policy и счетчик продуктов в одном запросе. Я пробовал различные методы, но не смог выполнить