landslide
01-22-2008, 09:34 AM
I have the following querys SELECT [800], COUNT (800) AS TOTAL
FROM DAYNETTALLY GROUP BY [800] SELECT [805], COUNT (805) AS TOTAL
FROM DAYNETTALLY GROUP BY [800] They both work great but I want to combine them. I want to count both just like it does and then combine both sum into one total. How do I do that?
FROM DAYNETTALLY GROUP BY [800] SELECT [805], COUNT (805) AS TOTAL
FROM DAYNETTALLY GROUP BY [800] They both work great but I want to combine them. I want to count both just like it does and then combine both sum into one total. How do I do that?