Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to create a visualized chart using Jquery Highcharts plug-in.

But I'm unable to write a Query to create data which is needed to insert the JS.

What I need to do is to show the customer, how many unique visitors clicked his Job Ad. You can see the final output what I'm trying to do;

enter image description here

And this is a part of required JS;

xAxis: {
   categories: ['01.05', '02.05', '03.05', '04.05', '05.05',
                '06.05', '07.05','08.05']
   },
series: [{
            name: 'Unique',
            data: [12,8,9,10,5,4,11,30]
        }]

Table with the statistics;

Job_Ad_Statistics
-----------------
jobID,  jobstat_Date,     job_statUnique
1       07.05.2011        0
1       07.05.2011        1
1       07.05.2011        1
2       06.05.2011        1
3       06.05.2011        1
1       05.05.2011        1
1       04.05.2011        1
*Currently, table has 20k rows.

I need to get multiple Count where job_statUnique=1 AND jobstat_Date is between now AND 7 days earlier from now in order to insert the data to Series field.

Expected Result:
----------------
Day              Unique_ViewCount_of_jobID (Assuming ID 1)
.... start from 7 days earlier     
02.05            0
03.05            0    
04.05            1
05.05            1
06.05            0
07.05            2 
08.05            0 - today

Thanks for help.

share|improve this question
Can you give us the sample data you would like returned by your query? – Abe Miessler May 8 '11 at 15:07
@Abe Miessler :I have added the expected output to the question. – Burak F. Kilicaslan May 8 '11 at 15:32

2 Answers

I am a little unclear on what you want the data to look like, but try something like this:

SELECT jobID, COUNT(jobID) 
FROM Job_Ad_Statistics
WHERE jobstat_Date BETWEEN GETDATE() AND DATEADD(day, -7, GETDATE())
GROUP BY JobID

if you just want the counts you can drop the JobID from the select:

SELECT COUNT(jobID) 
FROM Job_Ad_Statistics
WHERE jobstat_Date BETWEEN GETDATE() AND DATEADD(day, -7, GETDATE())
GROUP BY JobID
share|improve this answer
Your query doesn't return the expected output I mentioned later on my question. Instead, it returns nothing actually. I changed where statement to this WHERE job_stat_Date >= DATEADD(d, -7, GETDATE()) AND job_stat_Date < GETDATE() but still no luck. – Burak F. Kilicaslan May 8 '11 at 15:35
Is jobstat_Date a datetime column? If not, you will need to convert it for the comparison. – Abe Miessler May 8 '11 at 22:35
Yes it's a datetime column. – Burak F. Kilicaslan May 8 '11 at 23:07
up vote 0 down vote accepted

In case someone needs an answer, here is how I solved it;

  ;WITH Date_Range_T(d_range) AS 
     (
       SELECT DATEADD(DAY, DATEDIFF(DAY, 0, GETDATE()) - 6, 0) 
       UNION ALL SELECT DATEADD(DAY, 1, d_range) 
       FROM Date_Range_T 
       WHERE DATEADD(DAY, 1, d_range) < GETDATE()
     )

  SELECT d_range, COUNT(job_statID) as total 
  FROM Date_Range_T 
       LEFT JOIN Jobs_Stats on (job_stat_Date=d_range) 
  GROUP BY d_range ORDER BY d_range ASC

Note: job_stat_Date must be Date not DateTime

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.