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

  • SEARCH
  • Home
  • 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 6119045
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T15:30:23+00:00 2026-05-23T15:30:23+00:00

I want to get only winners in mysql table. SELECT mayor_id, local_unit_id, Value FROM

  • 0

I want to get only winners in mysql table.

SELECT mayor_id, local_unit_id, Value FROM 
   (SELECT mayor_id,  local_unit_id, SUM(  `votes` ) AS  'Value' 
    FROM mayorresults 
    GROUP BY  `mayor_id`) AS t1
    ORDER BY  `t1`.`local_unit_id` ASC

Idea is to Sum votes first then get only largest number, in this case the winner.

With this query I can get all, but not just the winners.

I want MAX(SUM(votes)) to get, but It doesn’t work like this.

EDIT: I want to get winners for each localunit

eg.

local_unit_id    mayor_id    votes
 1                25          8562
 2                534         18562
  • 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-23T15:30:24+00:00Added an answer on May 23, 2026 at 3:30 pm

    Update, after the explanations:

    SELECT grp.local_unit_id, grp.mayor_id, grp.Value
    FROM  
        ( SELECT  local_unit_id, mayor_id, SUM( votes ) AS Value 
          FROM mayorresults 
          GROUP BY local_unit_id, mayor_id
        ) AS grp
      JOIN
        ( SELECT local_unit_id, MAX(Value) AS Value
          FROM 
            ( SELECT  local_unit_id, mayor_id, SUM( votes ) AS Value 
              FROM mayorresults 
              GROUP BY local_unit_id, mayor_id
            ) AS grp
          GROUP BY local_unit_id
        ) AS grp2
        ON  grp2.local_unit_id = grp.local_unit_id
        AND grp2.Value = grp.Value
    ORDER BY local_unit ASC
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using SQL Server 2005 I want to get only numeric values from the table
I have two employee lists that I want to get only unique records from
I want to get the headers only from a curl request curl -I www.google.com
I want to get only number id from string. result : 123456 var text
I want to get Only Hours From date by using PHP & Cakephp function.
I have table user(id,name,address) and User domain class.i want to get only the name
I am trying to get record from my table in Access against the value
I have a details table (AppID, SSN). I want to get only second where
I want to get only Time from DateTime column using SQL query using SQL
I want to get a list of column names from a table in a

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.