I have the following 4 select statements. How can I combine everything into 1 sql statement? There are 2 selects for Total_feather_1 and 2 selects for total_feather_2, how can I combine everything into 1 statement where the 2 total_feather_1 states are counted together and the 2 total_feather_2 selects are also counted together, so essentially I want to have just 2 columns instead of 4?Select Count (*) as total_Feather_1from historywhere recorddate='20091230'and package in ('Blanket', 'Feather')--and calldate >= '20100201'and Code like '%100005%'AND Offertype IN ('101', '102', '103')Select Count (*) as total_Feather_1from historywhere recorddate='20091230'and package in ('Blanket', 'Feather')--and calldate >= '20100201'and Code like '%100006%'AND Offertype IN ('101', '102', '103')Select Count (*) as total_Feather_2from historywhere recorddate='20091230'and package in ('Blanket', 'Feather')--and calldate >= '20100201'and Code like '%100007%'AND Offertype IN ('101', '102', '103')Select Count (*) as total_Feather_2from historywhere recorddate='20091230'and package in ('Blanket', 'Feather')--and calldate >= '20100201'and Code like '%100008%'AND Offertype IN ('101', '102', '103')