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 6114339
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T14:57:47+00:00 2026-05-23T14:57:47+00:00

I have a table where I can have multiple names for a given id

  • 0

I have a table where I can have multiple names for a given id like this:

a_table (id int, name varchar(100), priority int);

I need a query that will search on names but make sure it will return only 1 name for each id, and that name will be the one with the higher priority.

e.g. if my data are

1, AaaB, 2
1, AbbB, 1
1, AccB, 0
2, foo, 0
3, AddC, 0

I want my query for "A%" to return:

1, AaaB
3, AddC

I was thinking something like:

select * from a_table where name like 'A%' group by id;

But this will not guarantee that the value with the higher priority will be selected.

Any ideas?

  • 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-23T14:57:48+00:00Added an answer on May 23, 2026 at 2:57 pm

    I believe you want what the MySQL documentation calls the rows holding the group-wise maximum of a certain column:

    For the task "For each article, find the dealer or dealers with the most expensive price":

    SELECT article, dealer, price
    FROM   shop s1
    WHERE  price=(SELECT MAX(s2.price)
                 FROM shop s2
                 WHERE s1.article = s2.article)
    ORDER BY article;
    
    +---------+--------+-------+
    | article | dealer | price |
    +---------+--------+-------+
    |    0001 | B      |  3.99 |
    |    0002 | A      | 10.99 |
    |    0003 | C      |  1.69 |
    |    0004 | D      | 19.95 |
    +---------+--------+-------+
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Given a table like this: [Last Name] [First Name] [DepartmentID] --------------------------------------- Doe John 1
I have 3 tables event, location, event_location. Event can have multiple locations. Location table
I have a table of product information with many bit columns. This table can
I have a table like the following table: UserID Num1 Num2 Code Name Cat
I have a stored procedure that returns multiple tables. How can I execute and
I have a simple database with multiple tables. I can't figure out how to
Can I have an identity (unique, non-repeating) column span multiple tables? For example, let's
I have a table which defines what things another table can have, for example:
I have a table and can count the number of rows using var count
I have Table A. How can I select from Table A to get Table

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.