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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T18:21:35+00:00 2026-06-08T18:21:35+00:00

How to get more columns from MAX(ID), MIN(ID) MYSQL query? Currently I get only

  • 0

How to get more columns from MAX(ID), MIN(ID) MYSQL query?

Currently I get only two values: MAX(ID) & MIN(ID) from this query:

SELECT MIN(ID), MAX(ID)
FROM mytable
WHERE mytable.series = 'white'
;

Need to get something like this-pseudo-query:

SELECT  column1, column2
FROM    mytable 
WHERE   series = 'white'
AND ID=Max(ID)
'AND GET ME ALSO'
WHERE   series = 'white'
AND ID=Min(ID);`

It should return 2 rows for the column ‘series’ that equals ‘white’.

1st with column1 and column2 for ID=Min(ID).
2nd with column1 and column2 for ID=Max(ID).

But how?

  • 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-06-08T18:21:36+00:00Added an answer on June 8, 2026 at 6:21 pm

    Here is an approach using UNION:

    SELECT column1, column2
    FROM mytable
    WHERE series = 'white' AND ID IN
    (    
        SELECT MIN(ID) FROM mytable WHERE series = 'white'
        UNION
        SELECT MAX(ID) FROM mytable WHERE series = 'white'
    )
    

    For good performance add a combined index on (series, id).

    Or another variation which may have better performance:

    (
        SELECT column1, column2
        FROM mytable
        WHERE series = 'white'
        ORDER BY ID
        LIMIT 1
    )
    UNION
    (
        SELECT column1, column2
        FROM mytable
        WHERE series = 'white'
        ORDER BY ID DESC
        LIMIT 1
    )
    

    This will also be able to use the combined index on (series, id).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is currently my MySQL UPDATE query, which is called from program written in
I've been trying to get this complex MYSQL query to work exactly right over
Probably I cant get more dumb, but seriously this is the first time I
I have a query that looks something like this: select xmlelement(rootNode, (case when XH.ID
So I have this select statement that I am trying to make more responsive.
I'm trying to retrieve two columns from the DB with iBatis. I want to
I'm pulling a table from a MySQL database, using PHP. This is roughly the
I want to find the fastest way to get the min and max of
In MySql, I have two tables, A and B. A has as columns A.id,
I have a query: select e.Owner as 'Owner', COUNT(l.EnquiryID) as 'Total Sales Lines' from

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.