SQL Server CAST() 函数
定义和用法
CAST() 函数将(任何类型的)值转换为指定的数据类型。
提示:同时查看 CONVERT() 函数。
语法
CAST(expression
AS datatype(length))
参数值
值 | 描述 |
---|---|
expression | 必需。要转换的值 |
datatype | 必需。要将 expression 转换为的数据类型。 可以是以下之一: bigint, int, smallint, tinyint, bit, decimal, numeric, money, smallmoney, float, real, datetime, smalldatetime, char, varchar, text, nchar, nvarchar, ntext, binary, varbinary, 或 image |
(length) | 可选。结果数据类型的长度(对于 char、varchar、nchar、nvarchar、binary 和 varbinary) |
技术细节
适用于: | SQL Server (starting with 2008), Azure SQL Database, Azure SQL Data Warehouse, Parallel Data Warehouse |
---|