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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T21:03:29+00:00 2026-05-27T21:03:29+00:00

I have dates in a column of database but the date format is not

  • 0

I have dates in a column of database but the date format is not same. Some are mm-dd-yyyy and some are mm.dd.yy or other. How do I format it into same type using a query?

I am using SQL Server 2008.

  • 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-27T21:03:30+00:00Added an answer on May 27, 2026 at 9:03 pm

    My recommendation would be:

    1. Add a column of type DATE to your table:

      ALTER TABLE dbo.YourTable ADD NewDateColumn DATE
      
    2. Update your table to convert those varchar values to DATE:

      UPDATE dbo.YourTable
      SET NewDateColumn = CAST(YourOldColumn AS DATE)
      WHERE NewDateColumn IS NULL AND ISDATE(YourOldColumn) = 1
      
    3. Drop that old column:

      ALTER TABLE dbo.YourTable DROP COLUMN YourOldColumn
      

    From now on – use the new DATE column exclusively.

    You can format it to any string representation that is supported in SQL Server using the CONVERT function

    Once you have that DATE column, you can output it in whatever string formatting you need:

    SELECT
       CONVERT(VARCHAR(20), GETDATE(), 101) 'US format', 
       CONVERT(VARCHAR(20), GETDATE(), 102) 'ANSI format', 
       CONVERT(VARCHAR(20), GETDATE(), 104) 'German format'
    

    gives you:

    US format   ANSI format German format
    12/29/2011  2011.12.29  29.12.2011
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In mysql database i have this column called: Name: Date Type: datetime I have
I have saved a date in @dd-MM-yyyy HH:mm:SS format,Now in database it gets displayed
I have legacy DB that store dates that means no-date as 9999-21-31, The column
I have a date column where the date is displayed in the format 2009-11-18
I have a datatable that has a date column, but I am stumped as
I have a dataset with a column containing date in DAY-MONTH-YEAR TIME format. That
I have a DATETIME column EntryDate and I am storing values as dd/MM/yyyy format.
I have a table that contains a Date column in varchar format. The date
I have the following column date in a SQL Server database. The datatype is
I have a MYSQL table column of type timestamp and using CURRENT_TIMESTAMP as default

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.