I have the below SQL Query
  select Count(emailID) as ViewsThatMonth, 
         Day(entry_date) as day, 
         Month(entry_date) as month, 
         Year(entry_date) as year 
    from email_views
   where emailID = 110197
Group By Day(entry_date), Month(entry_date), Year(entry_date)
UNION ALL 
  select Count(emailID) as ViewsThatMonth, 
         Day(Record_Entry) as day, 
         Month(Record_Entry) as month, 
         Year(Record_Entry) as year 
    from dbo.tblOnlineEmail_Views
   where emailID = 110197
Group By Day(Record_Entry), Month(Record_Entry), Year(Record_Entry)
order by 4, 3, 2
The results are showing as below. I need the results on the same date to be combined. I.e. the total for the 23/8/2010 should be 800.
ViewsThatMonth  day  month  year 
---------------------------------
799             23   8      2010
1               23   8      2010
281             24   8      2010
88              25   8      2010
1               25   8      2010