Select from following answers:- TRY_PARSE
- TRY_CONVERT
- CONVERT
- All Above
CONVERT enables you to convert data stored in one data type, such as binary, to another, such as datetime2. The conversion might fail if you attempt to convert between data types where conversion is not possible.
TRY_CONVERT enables you to attempt to convert data stored in one data type to another. If this conversion fails, a NULL value is written.
Show Correct Answer
Source: Microsoft press book | |
Alert Moderator