目录

SQL服务器 STR() 函数

示例

以字符串形式返回数字:

SELECT STR(185);
亲自试一试 »

定义和用法

STR() 函数以字符串形式返回数字。

语法

STR( number, length, decimals)

参数值

Parameter Description
number Required. The number to convert to a string
length Optional. The length of the returning string. Default value is 10
decimals Optional. The number of decimals to display in the returning string. Default value is 0

技术细节

工作于: SQL Server(从 2008 年开始)、Azure SQL 数据库、Azure SQL 数据仓库、并行数据仓库

更多示例

示例

以字符串形式返回数字:

SELECT STR(185.5);
亲自试一试 »

示例

以字符串形式返回数字:

SELECT STR(185.476, 6, 2);
亲自试一试 »