About 2,170,000 results
Open links in new tab
  1. SQL│文字列を日付型に変換するTo_DateConvert | アナリティクス …

    Mar 6, 2024 · 今回は、SQLで文字列を日付型に変換する方法について説明します。 さまざまな形式で入力される日付データ(文字列)を一貫した日付型で管理することは、データ整合性を維持するた …

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

    Reference for the CAST and CONVERT Transact-SQL functions. These functions convert expressions from one data type to another.

  3. 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)

  4. 4 Ways to Convert MM/DD/YYYY to DATE in SQL Server

    Aug 3, 2025 · Converting a string in ‘MM/DD/YYYY’ format to a DATE data type in SQL Server is a common task. Below are four options for getting the job done. 1. Using the CONVERT() Function …

  5. CAST y CONVERT (Transact-SQL) - SQL Server | Microsoft Learn

    Referencia para las funciones CAST y CONVERT de Transact-SQL. Estas funciones convierten una expresión de un tipo de datos a otro.

  6. t sql - How to parse string into date? - Stack Overflow

    Apr 24, 2012 · How can I convert a String to a Date in T-SQL? My test case is the string: '24.04.2012'

  7. Format SQL Server Dates with FORMAT Function

    Oct 31, 2025 · Format SQL Date examples using SQL FORMAT Function to format dates, time and numbers in SQL Server with valuable code.

  8. TO_DATE , DATE - Snowflake Documentation

    Categories: Conversion functions , Date & time functions TO_DATE , DATE Converts an input expression to a date: For a VARCHAR expression, the result of converting the string to a date. For a …

  9. SQL CONVERT () (MySQL et SQL Server) - SQL

    SQL CONVERT () (MySQL et SQL Server) La fonction SQL CONVERT (), dans les systèmes MySQL et SQL Server, permet de convertir une donnée d’un type en un autre, de façon semblable à CAST (). …

  10. sql server - How to get a date in YYYY-MM-DD format from a TSQL ...

    Feb 22, 2017 · How do I retrieve a date from SQL Server in YYYY-MM-DD format? I need this to work with SQL Server 2000 and up. Is there a simple way to perform this in SQL Server or would it be …