enow.com Web Search

Search results

  1. Results from the WOW.Com Content Network
  2. SQL Server CONVERT() Function - W3Schools

    www.w3schools.com/SQL/func_sqlserver_convert.asp

    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) Parameter Values. Technical Details. More Examples. Example. Convert an expression from one data type to another (varchar):

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

    learn.microsoft.com/en-us/sql/t-sql/functions/cast-and-convert-transact-sql

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

  4. SQL Server CONVERT Function Explained By Practical Examples

    www.sqlservertutorial.net/sql-server-system-functions/sql-server-convert-function

    The CONVERT() function allows you to convert a value of one type to another. The following shows the syntax of the CONVERT() function: CONVERT ( target_type [ ( length ) ] , expression [ , style ] )

  5. SQL Convert Function - SQL Shack

    www.sqlshack.com/sql-convert-function

    SQL Convert Function. January 29, 2019 by Esat Erkec. In this article, we will discuss and learn basics and all details about SQL Server data type converting operations and also we will review the SQL CONVERT and TRY_CONVERT built-in functions with various samples.

  6. Conversion functions (Transact-SQL) - SQL Server | Microsoft...

    learn.microsoft.com/en-us/sql/t-sql/functions/conversion-functions-transact-sql

    Conversion functions support data type casting and conversion in the SQL Server Database Engine.

  7. Examples for SQL CAST and SQL CONVERT Functions - SQL Server Tips

    www.mssqltips.com/sqlservertip/6971/sql-cast-sql-convert-function

    Learn how to convert SQL Server data to different data types such as string, date, integer and numeric using the CAST and CONVERT functions.

  8. SQL Convert Examples for Dates, Integers, Strings and more

    www.mssqltips.com/sqlservertip/8004/sql-convert-examples-dates-integers-strings

    In this article, we look at how to use the SQL CONVERT function to convert between data types such as date, integers, strings, and more.

  9. SQL Server: CONVERT Function - TechOnTheNet

    www.techonthenet.com/sql_server/functions/convert.php

    In SQL Server (Transact-SQL), the CONVERT function converts an expression from one datatype to another datatype. If the conversion fails, the function will return an error. Otherwise, it will return the converted value. TIP: Use the TRY_CONVERT function to return a NULL (instead of an error) if the conversion fails. Syntax.

  10. SQL Convert Function In Depth - SQL Server Tips

    www.mssqltips.com/sqlservertip/7117/sql-convert-function-in-depth

    Learn about the SQL Server CONVERT function to convert to different data types as well as alternative options.

  11. CONVERT - SQL Tutorial

    www.sqltutorial.net/convert.html

    The SQL CONVERT function is used to convert an expression from one data type to another. It’s a powerful function that allows you to handle data type conversions and format the output according to a specified style. Syntax. The basic syntax of the CONVERT function is as follows: CONVERT(data_type, expression, style)