Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5996089
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T00:03:11+00:00 2026-05-23T00:03:11+00:00

I’m creating a small voting application. I need to get the images and their

  • 0

I’m creating a small voting application. I need to get the images and their vote counts from one table, and then check another vote table to see if the user has already voted for each of these images already.

To get the images from the image table I’m doing this:

  SELECT id, file_name, total_votes 
    FROM _images 
   WHERE approved = 1 
ORDER BY total_votes DESC 
   LIMIT ".($page*5).", 5"

But I also need to check in the “vote” table that their userid isn’t already associated with the (image) id from this query. I only need to show 5 images at a time, hence the LIMIT applied to the first query.

I’m not sure whether I need to do some joining or multiple queries.

my vote table has fields:

  • id
  • voter_id
  • image_id

EDIT:
Thanks for all your feedback.
Some more info:

total_votes felt dirty when I put it in there, but I couldn’t work out a better way to count up the votes each time. Wouldn’t it be inefficient if every time there was a vote cast, or a request to view the leaderboard that all the votes had to be tallied and sorted?
Forgive me for my sins – I’m not a database programmer!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T00:03:12+00:00Added an answer on May 23, 2026 at 12:03 am

    Using LEFT JOIN/IS NULL:

       SELECT i.id, i.file_name, i.total_votes 
         FROM _images i
    LEFT JOIN VOTES v ON v.image_id = i.id
                     AND v.voter_id = ?
        WHERE approved = 1 
     ORDER BY total_votes DESC 
        LIMIT ".($page*5).", 5"
    

    Using NOT EXISTS

       SELECT i.id, i.file_name, i.total_votes 
         FROM _images i
        WHERE approved = 1 
          AND NOT EXISTS (SELECT NULL
                           FROM VOTES v
                          WHERE v.image_id = i.id
                            AND v.voter_id = ?)
     ORDER BY total_votes DESC 
        LIMIT ".($page*5).", 5
    

    Using NOT IN

      SELECT i.id, i.file_name, i.total_votes 
        FROM _images i
       WHERE approved = 1 
         AND i.id NOT IN (SELECT v.image_id
                          FROM VOTES v
                         WHERE v.voter_id = ?)
    ORDER BY total_votes DESC 
       LIMIT ".($page*5).", 5
    

    Suggested Reading:

    • http://explainextended.com/2009/09/18/not-in-vs-not-exists-vs-left-join-is-null-mysql/
    • http://explainextended.com/2010/05/27/left-join-is-null-vs-not-in-vs-not-exists-nullable-columns/
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to clean up various Word 'smart' characters in user input, including but
We are using XSLT to translate a RIXML file to XML. Our RIXML contains
i want to parse a xhtml file and display in UITableView. what is the
public static bool CheckLogin(string Username, string Password, bool AutoLogin) { bool LoginSuccessful; // Trim

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.