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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T22:15:29+00:00 2026-05-25T22:15:29+00:00

In SQL Server, I have a start time column on a table such as:

  • 0

In SQL Server, I have a start time column on a table such as:

2011-09-18 08:06:36.000
2011-09-19 05:42:16.000
2011-09-20 08:02:26.000
2011-09-21 08:37:24.000
2011-09-22 08:22:20.000
2011-09-23 11:58:27.000
2011-09-24 09:00:48.000
2011-09-25 06:51:34.000
2011-09-26 06:09:05.000
2011-09-27 08:25:26.000
...

My question is, how can I get the average hour and minute? I want to know that what is the average start time for this job. (for example 07:22)

I tried something like this but didn’t work:

select CAST(AVG(CAST(DATEPART(HH, START_TIME)AS float)) AS datetime) FROM

Thanks.

  • 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-25T22:15:29+00:00Added an answer on May 25, 2026 at 10:15 pm
    declare @T table(StartTime datetime)
    
    insert into @T values
    ('2011-09-18 08:06:36.000'),
    ('2011-09-19 05:42:16.000'),
    ('2011-09-20 08:02:26.000'),
    ('2011-09-21 08:37:24.000'),
    ('2011-09-22 08:22:20.000'),
    ('2011-09-23 11:58:27.000'),
    ('2011-09-24 09:00:48.000'),
    ('2011-09-25 06:51:34.000'),
    ('2011-09-26 06:09:05.000'),
    ('2011-09-27 08:25:26.000')
    
    ;with C(Sec) as
    (
      select dateadd(second, avg(datediff(second, dateadd(day, datediff(day, 0, StartTime), 0), StartTime)), 0)
      from @T
    )
    select convert(char(5), dateadd(minute, case when datepart(second, C.Sec) >= 30 then 1 else 0 end, C.Sec), 108)
    from C
    -----
    08:08
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does each column of a table in SQL Server have a unique id? I've
In SQL Server I have a DATETIME column which includes a time element. Example:
I have a table with two separate columns for date and time (SQL Server
I have this recorded in SQL Server: 1- startTime (datetime): 5/2/2009 08:30 (brazilian time
(Note: This is for MySQL's SQL, not SQL Server.) I have a database column
I have a Sql Server 2005 table with following data: idHearing is the primary
I have a table in SQL Server that stores statistics for a piece of
I have a linear datetime based table in MySQL and SQL server for a
I have a live SQL Server 2008 database and I need to start working
I have these data on a table (using SQL Server 2005): ID ParentID StartTime

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.