Hey, for some reason, my higher faculties are not functioning today. I'm looking at this query and am kicking myself that it's not coming out.
Table:Equipment
ID........PM..............Norm.........Abnorm.......InstallDate
F001....$50............$250.........$75.............data
F002....data...........data.........data.............data
...
All I'm trying to do is query out
ID.........Total..........InstallDate
F001.....$375..........data
F002...
I can get ID and total out but have trouble with installDate
SELECT ID, sum(pm+norm+abnorm)
FROM table group by truck
works but how do I add installDate the query?
SELECT ID, sum(pm+norm+abnorm), installDate
FROM table group by truck
asks for an aggregate or function
Any clues out there?
PB
Table:Equipment
ID........PM..............Norm.........Abnorm.......InstallDate
F001....$50............$250.........$75.............data
F002....data...........data.........data.............data
...
All I'm trying to do is query out
ID.........Total..........InstallDate
F001.....$375..........data
F002...
I can get ID and total out but have trouble with installDate
SELECT ID, sum(pm+norm+abnorm)
FROM table group by truck
works but how do I add installDate the query?
SELECT ID, sum(pm+norm+abnorm), installDate
FROM table group by truck
asks for an aggregate or function
Any clues out there?
PB