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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T23:47:30+00:00 2026-06-11T23:47:30+00:00

I need to be able to find first and the second record with sql

  • 0

I need to be able to find first and the second record with sql only if time between those 2 is 15 or more minutes.

Let me put a little example so you can see what I need:

ID| Time | Serial |   
 1| 10:45|   13   |  
 2| 11:00|   12   |  
 3| 11:17|   12   |  
 4| 11:00|   13   |  
 7| 11:05|   13   |  
 8| 11:07|   12   |  

I need to get this lines:

ID| Time | Serial |

1| 10:45| 13 |
2| 11:00| 12 |
3| 11:17| 12 |
4| 11:00| 13 |
7| 11:05| 13 |
8| 11:07| 12 |

And output like this:

Time 1 | Time 2 | Serial | Usage  
 10:45 | 11:00  | 13     | 15min
 11:00 | 11:17  | 12     | 17min

EDIT:
I only need to compare 2 records at the same time with the same serial number. And of course go trough all the records.
I have this type of the data in time column:2012-09-06 16:53:05.581

  • 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-11T23:47:31+00:00Added an answer on June 11, 2026 at 11:47 pm

    Maybe something along these lines:

    SELECT
        time1.time,
        time2.time,
        time1.serial,
        (time2.time - time1.time) / 60 AS usage
    FROM
        mytable time1,
        mytable time2
    WHERE
        time1.id != time2.id
        AND time1.serial = time2.serial
        AND time2.time - time1.time > 60 * 15
    

    I am not familiar with time handling in MySQL – I am assuming that they can be subtracted, and that the difference is in seconds. Use a function here if it requires explicit conversion.

    Addendum: this should handle pairs of record entries fine. However if there are three that each have 15 minutes between them, then this will produce 1-2, 2-3 and 1-3, so you may need to modify it a bit.

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

Sidebar

Related Questions

I need to be able to find all grids for a given form. This
I need to be able to find the last occurrance of a number within
I am writing some Selenium tests and I need to be able to find
I'm quite surprised I haven't been able to find out what characters I need
I need to be able to search within a string and find out if
i need to find away to parse html and css layout to be able
I'm failing to find answer to my problem. I need to be able to
Users of the website need to able to store images in their area ,
Need to be able to pull Magento products into an external template. Need to
I need to be able to access a list throughout my Rails project. 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.