I am trying to build an incentive calculator for my company.
I need a query that will take, for each employee,
Append rows as follows:
Emp1 | Attendance |
Emp1 | CSAT Score |
Emp1 | Quality Score |
Emp2 | Attendance |
Emp2 | CSAT Score |
Emp2 | Quality Score |
...etc...
The Attendance, CSAT Score, Quality Score are from a table named PARAMETERS where each department will have them listed as
Dept1 | Attendance | >90% |$10
Dept1 | CSAT Score | >8.0 |$10
Dept1 | Quality Score | >3.5 |$20
Dept2 | Attendance | >95% |$15
...etc...
I can do the lookups needed to find out which department an employee belongs to, but I have no idea how to get the Employee to be listed in multiple rows like this. Does anyone have any ideas?
I need a query that will take, for each employee,
Append rows as follows:
Emp1 | Attendance |
Emp1 | CSAT Score |
Emp1 | Quality Score |
Emp2 | Attendance |
Emp2 | CSAT Score |
Emp2 | Quality Score |
...etc...
The Attendance, CSAT Score, Quality Score are from a table named PARAMETERS where each department will have them listed as
Dept1 | Attendance | >90% |$10
Dept1 | CSAT Score | >8.0 |$10
Dept1 | Quality Score | >3.5 |$20
Dept2 | Attendance | >95% |$15
...etc...
I can do the lookups needed to find out which department an employee belongs to, but I have no idea how to get the Employee to be listed in multiple rows like this. Does anyone have any ideas?