Say a table with the following fields showing salary and benefits
Year
EmployeedId
ItemId
Amount
Containing the following records
1999; 1; 1; 52000
1999; 1; 2; 1000
2000; 1; 1; 50000
2000; 1; 2; 1000
2000; 1; 3; 1000
2001; 1; 1; 60000
2001; 1; 2; 2000
2002; 1; 1; 69000
2002; 1; 2; 4000
2002; 1; 3; 2000
I need to make a graphic showing the percentage evolution of the money
each employee is receiving this way
1999; 0
2000; -2%
2001; 19%
2002; 21%
Which query could do the trick ?
Jean-Luc
Year
EmployeedId
ItemId
Amount
Containing the following records
1999; 1; 1; 52000
1999; 1; 2; 1000
2000; 1; 1; 50000
2000; 1; 2; 1000
2000; 1; 3; 1000
2001; 1; 1; 60000
2001; 1; 2; 2000
2002; 1; 1; 69000
2002; 1; 2; 4000
2002; 1; 3; 2000
I need to make a graphic showing the percentage evolution of the money
each employee is receiving this way
1999; 0
2000; -2%
2001; 19%
2002; 21%
Which query could do the trick ?
Jean-Luc