About 9,320 results
Open links in new tab
  1. SQL Server CAST () Function - W3Schools

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

  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 CAST() Function: An Overview - LearnSQL.com

    Dec 3, 2024 · The SQL CAST () function converts one data type to another. Read on to find out how and why you’d use it in your queries.

  4. SQL Server CAST Function By Practical Examples

    Mar 14, 2019 · In this tutorial, you will learn how to use the SQL Server CAST () function to convert a value or an expression from one type to another.

  5. SQL Server CAST () Function - GeeksforGeeks

    Feb 3, 2026 · The CAST () function is used to convert a value from one data type to another, helping SQL Server work with data in the required format. It is useful when we need to: Change strings to …

  6. How to Use CAST Function in SQL? - SQL Knowledge Center

    Feb 9, 2024 · Mastering the CAST function in SQL has empowered me to manipulate and transform data with precision. Through practical examples, I’ve shared how to seamlessly convert data types, …

  7. SQL CAST Function in SQL Server – Syntax, Examples, and Best Practices

    Mar 31, 2025 · Learn how to use the SQL CAST function for data type conversion in SQL Server. Get examples for converting numbers, strings, and dates with CAST in SQL. Avoid common errors and …

  8. SQL Server: CAST Function - TechOnTheNet

    SQL Server: CAST Function This SQL Server tutorial explains how to use the CAST function in SQL Server (Transact-SQL) with syntax and examples.

  9. CASTSQL Tutorial

    Nov 29, 2023 · The SQL CAST function is used to convert an expression of one data type to another. This conversion can be necessary when you need to perform operations on data of different types or …

  10. SQL Server CAST () Function - TutorialsTeacher.com

    When you convert data types with different decimal places, then the CAST () function either truncates the resulting value or rounds it off to the higher or lower value.