I have a table FCData with the following fields
FCData
------------
ID ----> auto assigned primary key
Emp_ID
DT
------------
On any given day an employee, represented by Emp_ID, can be recorded multiple times. I want to know if I can query to show how many times per month an employee is recorded. I have a 6 mo time span that I want to show month by month the tallies of employee ids.
I know that I can do this easily in a Pivot table in excel, but I have 500k+ records.
FCData
------------
ID ----> auto assigned primary key
Emp_ID
DT
------------
On any given day an employee, represented by Emp_ID, can be recorded multiple times. I want to know if I can query to show how many times per month an employee is recorded. I have a 6 mo time span that I want to show month by month the tallies of employee ids.
I know that I can do this easily in a Pivot table in excel, but I have 500k+ records.