Viewing 4 posts - 1 through 4 (of 4 total)
Ok, i try to give you as much informition as you need. The Tables are much greater, i post only a part:
Table Incident:
-ID
-date_logged
-Text
Table Problem:
-ID
-date_logged
-Text
But Incident and Problem are Different tables.
The...
May 20, 2009 at 11:01 am
Ola!
Tnx 4 your help but we dint find a solution. Thats why i try to specify my Problem. With
Select count(date_logged) as Inci_count, datename(month,date_logged) as Inci_Month
FROM incident
WHERE
date_logged > '20090101' AND date_logged...
May 20, 2009 at 1:48 am
Ola!
I modify your SQL Statement
Select count(date_logged) as M_Count, Month(date_logged) as M_Month
FROM incident
WHERE
date_logged > '20090101' AND date_logged < dateadd(mm, +2, '20090101')
group by month(date_logged)
But now i get a table like this:
M_Count...
May 14, 2009 at 2:05 am
Ola!
Tnx for yout Links. I read them and tried may way to get a report as i want. I found a solution but i think it is a worse workaround:
1)...
May 13, 2009 at 2:38 pm
Viewing 4 posts - 1 through 4 (of 4 total)