Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
DECLARE @v MONEY
SELECT @v = 1322323.6666
SELECT CONVERT(VARCHAR,@v,0) --1322323.67
Rounded but no formatting
SELECT CONVERT(VARCHAR,@v,1) --1,322,323.67
Formatted with commas
SELECT CONVERT(VARCHAR,@v,2) --1322323.6666
No formatting
DECLARE @v2 DECIMAL (36,10)
SELECT @v2 = 13243543.56565656
SELECT CONVERT(VARCHAR,CONVERT(MONEY,@v2),1) --13,243,543.57
Formatted with commas