About 6,210 results
Open links in new tab
  1. SQL Date Format Examples using SQL CONVERT Function - SQL Server

    Sep 26, 2025 · Learn how to use SQL CONVERT for different SQL date format options and achieve the desired date representation.

  2. List of Date Formats Available with CONVERT () in SQL Server

    Nov 8, 2020 · The following table contains a list of the date formats that you can provide to the CONVERT() function when you convert a date/time value to a string. These formats are provided …

  3. SQL Server Date Formatting - SQL Server Guides

    Jun 10, 2025 · In this comprehensive article, I’ll walk you through everything you need to know about SQL Server date formatting—from basic conversions to advanced techniques, followed by the …

  4. CAST and CONVERT (Transact-SQL) - SQL Server | Microsoft Learn

    Starting with GETDATE() values, this example displays the current date and time, uses CAST to change the current date and time to a character data type, and then uses CONVERT to display the date and …

  5. SQL DATE Format using Convert, Format Functions - Tutorial Gateway

    How to perform the SQL Server DATE Format and Time with an example. We use the CONVERT & FORMAT functions in SQL Server Date.

  6. sql server - Format date as yyyy-MM-ddThh:mm:ssZ - Stack Overflow

    According to the SQL Server 2005 books online page on Cast and Convert you use date format 127 - as per the example below. SQL Server 2000 documentation makes no reference to this format - …

  7. SQL Convert Date functions and formats

    Apr 3, 2019 · In this article, we will explore various SQL Convert Date formats to use in writing SQL queries.

  8. SQL Server CONVERT () Function - W3Schools.com

    Definition and Usage The CONVERT () function converts a value (of any type) into a specified datatype. Tip: Also look at the CAST () function. Syntax CONVERT (data_type (length), expression, style)

  9. Convert (Format) DateTime in SQL Server with Examples

    Mar 22, 2023 · Here, we will learn how to convert SQL DateTime data type values from one format to another like mm/dd/yyyy, yyyy-mm-dd, dd-mm-yy hh-mm-ss, yyyymmdd, etc. using CONVERT …

  10. Mastering the Art of Convert DateTime Formats In SQL Server with …

    Jan 4, 2022 · Explore various date conversion functions and formats, including examples and code snippets, to efficiently manipulate and format date and time data in your SQL Server queries.