The CAST() function accepts one argument, an expression
1> -- The CAST() function accepts one argument, an expression 2> 3> SELECT CAST('123' AS Int) 4> 5> GO ----------- 123 (1 rows affected) 1>