SQL Server 2012
It converts value to specified data type and if conversion fails it returns NULL. For example, source value in string format and we need date/integer format. Then this will help us to achieve the same.
Syntax: TRY_CONVERT ( data_type [ ( length ) ], expression [, style ] )
TRY_CON...