A friend has asked me if i can automate his
Cricket league table, I've had a go but am not
familiar with running Union querys.
I've got this far upto now.
SELECT Team_list.Team AS Team, Count(LCL.home_team)AS [HP],
Sum(Case LCL.home_points When '5' Then 1 Else 0 END)AS [HW 5],
Sum(Case...