Re-format datetime data

  • Some datetime data like "2011-09-30 23:59:59.000", "2012-01-30 23:59:59.000"... need to be re-format as "2011-09-30 00:00:00.000", "2012-01-30 00:00:00.000"...

    How to code to do it?

  • DECLARE @SomeDate DATETIME = '2011-09-30 23:59:59.000'

    SELECT CAST(CAST(@SomeDate AS DATE) AS DATETIME)

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply