About 754,000 results
Open links in new tab
  1. Convert Date format into DD/MMM/YYYY format in SQL Server

    Jun 25, 2013 · But this method somewhat ambiguous and it would be difficult for you to remember the number with respect to Specific Date Format. That's why in next versions of SQL server …

  2. sql server - How to get a date in YYYY-MM-DD format from a …

    Feb 22, 2017 · Also SQL Server always 'understands' it when you send that to your save procedure, regardless of which regional formats are set in the computers - I always use full …

  3. t sql - How to format datetime in SQL SERVER - Stack Overflow

    See the Date and Time Styles section of CAST and CONVERT (Transact-SQL) for all of the built-in formatting styles. I would keep in mind that unless you have a good reason for it, I mean a …

  4. Change Date Format (DD/MM/YYYY) in SQL SELECT Statement

    Jul 22, 2016 · SQL Server : change date format. 2. Formatting TSQL date to mm-dd-yyyy. 0. Change date format SQL. 0 ...

  5. sql server - Format date as yyyy-MM-ddThh:mm:ssZ - Stack …

    According to the SQL Server 2005 books online page on Cast and Convert you use date format 127 - as per the example below. CONVERT(varchar(50), DateValueField, 127) SQL Server …

  6. sql server - SQL: how to specify a date format on creating a table …

    Dec 22, 2016 · One way to tell it what the sequence of the date's parts is to use the DATEFORMAT setting like this: SET DATEFORMAT dmy; INSERT INTO APP (ID, DT) …

  7. SQL query to insert datetime in SQL Server - Stack Overflow

    Jun 18, 2012 · You will want to use the YYYYMMDD for unambiguous date determination in SQL Server. insert into table1(approvaldate)values('20120618 10:34:09 AM'); If you are married to …

  8. sql - TSQL DATETIME ISO 8601 - Stack Overflow

    Jan 14, 2000 · When dealing with dates in SQL Server, the ISO-8601 format is probably the best way to go, since it just works regardless of your language and culture settings. In order to …

  9. sql - how to convert date to a format `mm/dd/yyyy ... - Stack …

    Sep 2, 2013 · I'm having a sql table with date column named CREATED_TS which holds the dates in different format eg. as shown below Feb 20 2012 12:00AM 11/29/12 8:20:53 PM Feb …

  10. sql - How to convert datetime to date only (with time set to …

    Jun 24, 2009 · If you will always have the date in the same format, i.e. yyyy-MM-DD you can grab the first 10 characters if the value and insert that which is the equivelant of 00:00:00.0000 time …

Refresh