JavaToPerlNowVB
Programmer
I have a query and I want to sum up all the columns, This is the sql query that I have
Should i use the create or replace view but since I just want the total at the end of the each column I think I have to use someother way.
Thanks for all the help
Code:
SELECT CountSwitchGearInspectionByYear.[Inspection Year], CountSwitchDeficienciesByYear.Maint, CountSwitchGearInspectionByYear.[Units Inspected]
FROM CountSwitchGearInspectionByYear INNER JOIN CountSwitchDeficienciesByYear ON CountSwitchGearInspectionByYear.[Inspection Year] = CountSwitchDeficienciesByYear.[Inspection Date];
Should i use the create or replace view but since I just want the total at the end of the each column I think I have to use someother way.
Thanks for all the help