cfcProgrammer
Programmer
Hi Everyone,
I'm not sure if this is even possible to do within a sql statment but I thought I would throw it out to all of you SQL experts to see what you might come up with.
What I need is report that will display how many times each employee signs on per month. Simple right??? wrong...
LOL
I need the report to have a column for the "Employee Name", "UserName" and one for each month.
Here is the code that will give the total for the year but I can't seem to figure out how to separate by month...
any suggestions out there??
Thanks so much.
I've posted quite a few questions on here in the last little while and I have to say.. I've learned quite a bit and I appreciate everyone's help in getting me up to speed in this new environment.
cfcProgrammer
I'm not sure if this is even possible to do within a sql statment but I thought I would throw it out to all of you SQL experts to see what you might come up with.
What I need is report that will display how many times each employee signs on per month. Simple right??? wrong...
I need the report to have a column for the "Employee Name", "UserName" and one for each month.
Here is the code that will give the total for the year but I can't seem to figure out how to separate by month...
Code:
select distinct p.name, p.username, count(p.profile_id)as "ALL MONTHS"
from profiles p join login_history l on p.profile_id = l.profile_id
where logdate between '01-APR-2007' and '30-MAR-2008' and company_id = 15 group by p.name, p.username
[U]EmployeeName|UserName|All Months|[/U]...
I need..
[U]EmployeeName|UserName|April|May|June|July[/U]...
You get the idea... :)
Thanks so much.
I've posted quite a few questions on here in the last little while and I have to say.. I've learned quite a bit and I appreciate everyone's help in getting me up to speed in this new environment.
cfcProgrammer