I have an image gallery with a vote function, and I'm trying to display the number of votes for each image from the database.

I have a Votes table with the following...

vote_id │ user_id │ session_id │ ip │ created_date │ status

I am trying to get the number of votes for each image to display (several images per page), but only 1 vote per ip and only within the last week (Mon to Sun).

I'm not a genius when it comes to this sort of thing, but this is what I have been able to do so far to get results in SQL. I've been getting a bit stuck trying to implement it into PHP...

SELECT COUNT(DISTINCT ip) AS Votes FROM 'vote' (I know its basic but there you go)

link|improve this question
2  
If you want to get the number of votes for each image, where is the image_id stored? – cppcoder Dec 28 '11 at 15:54
the image id is stored in a table "image" image_id - image_name - image_caption - image_tag - image_url - mime - width - height - size - user_id - created_date – Chris Mackie Dec 28 '11 at 16:03
So how do you know which votes were for which image? – Mark Bannister Dec 28 '11 at 16:04
i'm not sure? Very good point! I'm teaching myself and this is as far as I have come so please bare with me. – Chris Mackie Dec 28 '11 at 16:08
Is your image object extend any abstract object like post or something cause it's really tough to get the relation between image and vote – Aymanadou Dec 28 '11 at 16:15
show 4 more comments
feedback

3 Answers

up vote 3 down vote accepted

Here is :)
SELECT COUNT(DISTINCT ip) AS Votes, WEEK(created_date) AS week_num FROM 'vote'
group by WEEK(created_date)
order by week_num DESC

link|improve this answer
feedback

you have to group data:

group by ip, week(created_date)

link|improve this answer
I have SELECT COUNT(DISTINCT ip) AS Votes, (SELECT WEEK(created_date) AS week_num FROM tcs_vote WHERE week_num= $weekNumber AND week_num= ('$weekNumber')); but its coming up with Error Code: 1054. Unknown column 'ip' in 'field list'?? – Chris Mackie Dec 29 '11 at 16:39
check your parenthesis : ... AS Votes, (SELECT ... – Francois B. Dec 29 '11 at 16:44
feedback

You should have a column like image_id in the votes table. Then you can accomplish this by this query.

SELECT image_id, COUNT(DISTINCT ip) AS Votes FROM vote GROUP BY image_id

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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