P
|
paulwebb 11/22/2009 |
You don't need (should not) have a table for your Overview, just a View on your data. |
S
|
specpa author 11/24/2009 |
You don't need (should not) have a table for your Overview, just a View on your data. 'Add View' in 'tables': Overview Select Specification, Sum(WorkingHours)as TotalWorkinghoursPerSpecification From WorkingHours group by Specification This will make a 'view' that you can use exactly like the table you wanted but should not create.
|