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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T16:10:12+00:00 2026-05-23T16:10:12+00:00

I am having trouble figuring out how to even start this query. I have

  • 0

I am having trouble figuring out how to even start this query.

I have a table that has the following columns and data:

User   BeginMile EndMile
1         1        5
1         5        6
1         6        20
1         20       25
1         25       29
2         1         9
2         15        20
3         1         2
3         6         10
3         10        12

I need to first find where there are gaps for each user from the EndMile of the previous record, to the BeginMile of the next record. I then need to return the record before and after where the gap occurs for each user.

In the previous data example, I would like the following returned:

User   PrevBeginMile   PrevEndMile    AfterBeginMile AfterEndMile   Gap
2         1                9                15          20           6
3         1                2                6           10           4

How can this be done?

  • 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-23T16:10:12+00:00Added an answer on May 23, 2026 at 4:10 pm

    Considering you’re on SQL 2005, this should work:

    DECLARE @Runners TABLE (Id INT, BeginMile INT, EndMile INT)
    
    INSERT INTO @Runners VALUES (1,1,5)
    INSERT INTO @Runners VALUES (1,5,6)
    INSERT INTO @Runners VALUES (1,6,20)
    INSERT INTO @Runners VALUES (1,20,25)
    INSERT INTO @Runners VALUES (1,25,29)
    INSERT INTO @Runners VALUES (2,1,9)
    INSERT INTO @Runners VALUES (2,15,20)
    INSERT INTO @Runners VALUES (3,1,2)
    INSERT INTO @Runners VALUES (3,6,10)
    INSERT INTO @Runners VALUES (3,10,12)
    
    WITH OrderedUsers AS (
        SELECT  *
        ,   ROW_NUMBER() OVER (PARTITION BY Id ORDER BY BeginMile) RowNum
        FROM    @Runners
    )
    
    SELECT  a.Id [User]
    ,   a.BeginMile PrevBeginMile
    ,   a.EndMile PrevEndMile
    ,   b.BeginMile AfterBeginMile
    ,   b.EndMile AfterEndMile
    ,   b.BeginMile - a.EndMile Gap
    FROM    OrderedUsers a
    JOIN    OrderedUsers b
    ON  a.Id = b.Id
    AND a.EndMile <> b.BeginMile
    AND a.RowNum = b.RowNum - 1
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm having some trouble figuring this out. I have the following CSV string hello
I'm having trouble figuring out how best to model my data. I have the
I'm having trouble figuring out a solution to this. I have several tables in
I'm having trouble figuring out how to select data using a compound XPath query
I'm having some conceptual trouble on figuring out how to best implement this... I
Even after studying the examples , I'm having trouble figuring out how to extract
I'm having trouble figuring out this issue I'm having with cookies and asp.net applications.
This should be easy, but I'm having trouble figuring out how to zoom an
I'm having trouble figuring out how to maintain my table stripes after adding new
This seems like a straightforward task, but I'm having trouble figuring out the rails

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.