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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T22:04:31+00:00 2026-05-22T22:04:31+00:00

Currently I want to select the most recent value from a related table. So,

  • 0

Currently I want to select the most recent value from a related table. So, I have a sale table which can have many transactions related to a single sale. I currently can use a subquery to fetch the most recent sale, as below, but it’s very slow!

UPDATE Sales s
SET LastTrans = (SELECT Stamp 
                   FROM Transactions 
                  WHERE SalesID = s.ID 
               ORDER BY Desc LIMIT 1)
WHERE LastTrans IS NULL;

Is there a way to do something like this using a join as if I do it for thousands of records it can take ages!

  • 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-22T22:04:31+00:00Added an answer on May 22, 2026 at 10:04 pm

    You didn’t say what column your inner query was sorted by so I assumed it was Stamp.

    UPDATE Sales s INNER JOIN (
        SELECT SalesID, MAX(Stamp) AS MaxStamp FROM Transactions
        GROUP BY SalesID
    ) AS t ON s.ID = t.SalesID
    SET LastTrans = t.MaxStamp
    WHERE LastTrans IS NULL;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Table#Appointments: ID, Name, LocationID, Created Currently I have: SELECT * FROM Appointments WHERE Created
Currently, if I want to output a SQL script for a table in my
I currently learning about scrum and want to learn from experienced professionals in the
I currently have a listview and I want to add an appropriate icon to
I currently have links w/ class=ajax that I want to retrieve the element with
I currently have MVS2008 and I want to try the 2010 version hoping that
Currently I'm running these two queries: SELECT COUNT(*) FROM `mytable` SELECT * FROM `mytable`
I have a table in MySQL with text, date_posted, and user. I currently query
I have made a website for a 'walking challenge', which has a table that
I currently have a SOLR query which uses the query (q), query fields (qf)

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.