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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T05:34:03+00:00 2026-06-14T05:34:03+00:00

Just wondering if anyone can help me with this. I would like to round

  • 0

Just wondering if anyone can help me with this. I would like to round the SQL datetime to the nearest 5 seconds

For example the dates on the left should give me the following result on the right.

  • 1900-01-01 14:08:20.000 -> 1900-01-01 14:08:20.000
  • 1900-01-01 14:08:21.000 -> 1900-01-01 14:08:20.000
  • 1900-01-01 14:08:22.000 -> 1900-01-01 14:08:20.000
  • 1900-01-01 14:08:23.000 -> 1900-01-01 14:08:25.000
  • 1900-01-01 14:08:24.000 -> 1900-01-01 14:08:25.000
  • 1900-01-01 14:08:25.000 -> 1900-01-01 14:08:25.000

I have seen a similar solution for minute intervals and I have tried to apply it to seconds but it doesn’t give the ideal result.

declare @DT datetime

set @DT = convert(datetime,'14:08:20')
select dateadd(s,(datepart(s,dateadd(s,1,@DT))/5)*5,
    dateadd(mi,datediff(mi,0,dateadd(s,1,@DT)),0))

However, 1900-01-01 14:08:23.000 gives me 1900-01-01 14:08:20.000, which is not correct.

Any help is appreciated.

  • 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-14T05:34:04+00:00Added an answer on June 14, 2026 at 5:34 am

    With some usage of DATEPART() and ROUND(), you can achieve this

    Query

    declare @t table (dt datetime);
    
    insert @t 
    select
    '1900-01-01 14:08:20.000' union all select
    '1900-01-01 14:08:21.000' union all select
    '1900-01-01 14:08:22.000' union all select
    '1900-01-01 14:08:23.000' union all select
    '1900-01-01 14:08:24.000' union all select
    '1900-01-01 14:08:25.000';
    
    select dt, 
           dateadd(second, round(datepart(second,dt)*2,-1) / 2-datepart(second,dt), dt)
    from   @t
    order by dt;
    

    Results:

    dt                      rounded
    ----------------------- -----------------------
    1900-01-01 14:08:20.000 1900-01-01 14:08:20.000
    1900-01-01 14:08:21.000 1900-01-01 14:08:20.000
    1900-01-01 14:08:22.000 1900-01-01 14:08:20.000
    1900-01-01 14:08:23.000 1900-01-01 14:08:25.000
    1900-01-01 14:08:24.000 1900-01-01 14:08:25.000
    1900-01-01 14:08:25.000 1900-01-01 14:08:25.000
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

wondering if anyone can help. This works, but I was wondering how it would
Just wondering if anyone can help me with this slight issue. I'm writing a
Just wondering if anyone can optimize this usortMonths() function to be better? Basically I
Just wondering if anyone has any ideas on how we can style templates... Like
I was wondering if anyone can help me on this cause its driving me
Wondering if anyone can help with this. I have a table with some fixed
Just wondering if anyone could help me with this. I'm new to actionscript, and
Just wondering if anyone would be able to help with the following VBScript script
I'm just wondering if anyone can point me at a jQuery carousel, like the
just wondering can anyone see anything wrong with this code. It worked perfectly on

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.