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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T19:44:51+00:00 2026-05-23T19:44:51+00:00

I have a database with thousands of entries, that have two date/time fields, let’s

  • 0

I have a database with thousands of entries, that have two date/time fields, let’s call them In and Out:

In                                      Out
2011-06-16 13:45:11.000    2011-06-16 13:49:12.000
2011-06-16 13:51:31.000    2011-06-16 14:23:17.000
2011-06-16 14:51:54.000    2011-06-16 14:58:43.000

and so on…

On the input I have a time frame (timeIn and timeOut). On the output I need to know the cumulative number of seconds between ‘In’ and ‘Out’ times in each of the records that fall into this time frame. It’s easier to illustrate with this daigram:

http://i150.photobucket.com/albums/s99/dc2000_bucket/sql_graph.jpg

Taking names from the diagram, I need to know “Time Interval 1 (in seconds)” + “Time Interval 2 (in seconds)” + “Time Interval 3 (in seconds)”. How to compose such SQL statement?

  • 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-23T19:44:52+00:00Added an answer on May 23, 2026 at 7:44 pm
    select sum(datediff(second, [In], case when @TimeOut < [Out] 
                                        then @TimeOut 
                                        else [Out] 
                                      end))
    from YourTable
    where [In] between @TimeIn and @TimeOut
    

    Or like this if you want to include intervals that ends within @TimeIn – @TimeOut as well.

    select sum(datediff(second, case when @TimeIn < [In] 
                                  then [In]
                                  else @TimeIn
                                end, 
                                case when @TimeOut < [Out] 
                                  then @TimeOut 
                                  else [Out] 
                                end))
    from YourTable
    where [In] <= @TimeOut and 
          [Out] >= @TimeIn
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have Database with date field. I see the time like: 1900-01-01 13:38:00.000 How
I have a database that contains a date and we are using the MaskedEditExtender
I have a database that stores thousands of bookmarks and the table BM_Table has
I have to query a database of thousands of entries and order this by
I have a large database with thousands records. Every time a user post his
I have a database of many tens of thousands of events that occurred at
I have a database table with hundreds of thousands of forum posts, and I
i have database table like this +-------+--------------+----------+ | id | ip | date |
I have a database table and one of the fields (not the primary key)
I have a database table that holds information for received files. One of the

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.