Open In App

STR() Function in SQL Server

The STR() function converts a numeric value to a character value.

Syntax :



STR(float_expression [, length [, decimal]])

Parameter : This method accepts three parameters as mentioned above and described below :

Returns : It returns a number as a string.



Example-1 :

SELECT STR(246.573, 6, 2);

Output :

246.57


Example-2 :

SELECT STR(246.573, 3, 3);

Output :

246


Example-3 :

SELECT STR(246.573, 2, 2);

Output :

**


Example-4 :

SELECT STR(246.573, 8, 4);

Output :

246.5730
Article Tags :
SQL