title | description | author | ms.author | ms.reviewer | ms.date | ms.service | ms.subservice | ms.topic | f1_keywords | helpviewer_keywords | dev_langs | monikerRange | ||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
TRY_CAST (Transact-SQL) |
Returns a value cast to the specified data type if the cast succeeds; otherwise, returns null. |
MikeRayMSFT |
mikeray |
randolphwest |
06/06/2023 |
sql |
t-sql |
reference |
|
|
|
= azuresqldb-current || >= sql-server-2016 || >= sql-server-linux-2017 || >= aps-pdw-2016 || = azure-sqldw-latest || =fabric |
[!INCLUDE sql-asdb-asdbmi-asa-pdw-fabricse-fabricdw]
Returns a value cast to the specified data type if the cast succeeds; otherwise, returns null.
:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions
TRY_CAST ( expression AS data_type [ ( length ) ] )
Specifies any valid expression to be cast.
The data type into which to cast expression.
Optional integer that specifies the length of the target data type.
The range of acceptable values is determined by the value of data_type.
Returns a value cast to the specified data type if the cast succeeds; otherwise, returns null.
TRY_CAST
takes the value passed to it and tries to convert it to the specified data_type. If the cast succeeds, TRY_CAST
returns the value as the specified data_type; if an error occurs, null is returned. However if you request a conversion that is explicitly not permitted, then TRY_CAST
fails with an error.
TRY_CAST
isn't a new reserved keyword and is available in all compatibility levels. TRY_CAST
has the same semantics as TRY_CONVERT
when connecting to remote servers.
TRY_CAST
doesn't work for varchar(max) if the length is over 8000.
The following example demonstrates that TRY_CAST
returns null when the cast fails.
SELECT
CASE WHEN TRY_CAST('test' AS FLOAT) IS NULL
THEN 'Cast failed'
ELSE 'Cast succeeded'
END AS Result;
GO
[!INCLUDEssResult]
Result
------------
Cast failed
(1 row(s) affected)
The following example demonstrates that the expression must be in the expected format.
SET DATEFORMAT dmy;
SELECT TRY_CAST('12/31/2022' AS DATETIME2) AS Result;
GO
[!INCLUDEssResult]
Result
----------------------
NULL
(1 row(s) affected)
The following example demonstrates that TRY_CAST
returns an error when the cast is explicitly not permitted.
SELECT TRY_CAST(4 AS XML) AS Result;
GO
The result of this statement is an error, because an integer can't be cast into an xml data type.
Explicit conversion from data type int to xml is not allowed.
This example demonstrates that the expression must be in the expected format.
SET DATEFORMAT mdy;
SELECT TRY_CAST('12/31/2022' AS DATETIME2) AS Result;
GO
[!INCLUDEssResult]
Result
----------------------------------
2022-12-31 00:00:00.0000000
(1 row(s) affected)