bugl
bugl
HomeLearnPatternsPathsSearchPremium
HomeLearnPatternsPaths

Loading lesson path

Learn/SQL/SQL References
SQL•SQL References

SQL Server STR() Function

Example

SELECT STR(185);

Definition and Usage

The STR() function returns a number as a string.

Syntax

STR(
number
,
length
,
decimals
)

Parameter Values

ParameterDescription
numberRequired. The number to convert to a string
lengthOptional. The length of the returning string. Default value is 10
decimalsOptional. The number of decimals to display in the returning string. Default value is 0

Technical Details

Works in:SQL Server (starting with 2008), Azure SQL Database, Azure SQL Data Warehouse, Parallel Data Warehouse

Previous

SQL Server SPACE() Function

Next

SQL Server STUFF() Function