CAST and CONVERT (Transact-SQL)

These functions convert an expression of one data type to another.

SELECT *, 
	CAST([game_year] AS decimal)
FROM
	[dbo].[console_games]

Last updated