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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T15:22:10+00:00 2026-05-22T15:22:10+00:00

I have a query that returns a datetime field and several other fields along

  • 0

I have a query that returns a datetime field and several other fields along with it. I want to add a field from another table that also has a datetime field. I cannot inner join these two tables since the datetime fields aren’t related, so instead want to join the first row in the second table that occurs just after the datetime field in the first table. Here’s a non-functional pseudo query of what I am trying to go for:

SELECT DISTINCT 
       TripID AS 'ID', 
       @CURRDATE = CurrDate, 
       @GROUPID = GroupID, 
       UserEmail AS 'User', 
       RouteID AS 'Route', 
       (SELECT TOP (1) PatternNum 
          FROM tblMOEHistory 
         WHERE (GroupID = @GROUPID) 
           AND (TimeStamp > @CURRDATE) 
      ORDER BY TimeStamp) AS 'Pattern' 
  FROM tblMobileTrips 
ORDER BY 'Time';

I’m not sure if there is a way to do this but I was hoping someone might be able to help me out.

  • 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-22T15:22:11+00:00Added an answer on May 22, 2026 at 3:22 pm

    You can indeed use a join… give this a shot:

    SELECT DISTINCT a.TripID AS 'ID',  
         a.CurrDate,  
         a.GroupID,  
         a.UserEmail AS 'User',  
         a.RouteID AS Route',  
         b.PatternNum
    from someTable a
    join tblMOEHistory b on a.GroupID = b.GroupID
         and b.TimeStamp = (select MIN(TimeStamp) 
                            from tblMOEHistory 
                            where GroupID = a.GroupID 
                            and TimeStamp > a.CurrDate)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a query which returns to me results as follows: Race | Candidate
I have a MySQL server with many databases that have a similar table structure.
I have a question about a particular query I'd like to execute against a
i'm trying to write an Oracle query that sorts the results in the same
First off, I'm using Access 2000 and DAO. I have code that executes a
I'm writing a simple php/mysql script that gets all ads I have in my
I have docs analogous to this: {_id: 1, values : [2,3,4] } {_id: 2,
I'm using Microsoft's idea for storing resource and booking information. In short, resources, such
This is a bit of subjective question about a specific situation. Main goal for

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.