I have a database with 12 tables with pension details of employees for Jan-Dec 2008. I want to get the total pension for 12 months for each employee adding up amounts from all the 12 tables (jan through dec).
How should I write the query?
|
|
|||
|
|
|
You may want to reconsider this design, and instead have a single table with a column to indicate MONTH and YEAR. Given your current design, your query will need to look like this (substituting your own table and field names, obviously): First, create this query and save it as "Monthly Totals":
Second, create another query that refers to the first:
Now save the second query and run it. It should give you what you need. |
|||
|
|
|
|
Why on earth do you have 12 different tables? That's a fundamentally bad design. Anyway...
|
|||
|
|