D
david.isaacks
SELECT [Facility VISN], MoNo, Count(*) AS Ct
FROM [SELECT 3 AS MoNo, [Facility VISN] FROM Output_MAR_2006
UNION ALL
SELECT 2 AS MoNo, [Facility VISN] FROM Output_FEB_2006
]. AS X
GROUP BY [Facility VISN], MoNo
ORDER BY [Facility VISN], MoNo;
This my query for my report. However I want to display the month name
and not the month number. So Fedraury instead of 2.
David
FROM [SELECT 3 AS MoNo, [Facility VISN] FROM Output_MAR_2006
UNION ALL
SELECT 2 AS MoNo, [Facility VISN] FROM Output_FEB_2006
]. AS X
GROUP BY [Facility VISN], MoNo
ORDER BY [Facility VISN], MoNo;
This my query for my report. However I want to display the month name
and not the month number. So Fedraury instead of 2.
David