Click here to Skip to main content
Click here to Skip to main content

Format a number (with commas) in SQL

By , 12 Jun 2011
 
CREATE FUNCTION dbo.com_FormatNumber(@value BIGINT) RETURNS VARCHAR(MAX)
AS
BEGIN
    DECLARE @minus CHAR, @working VARCHAR(MAX), @result VARCHAR(MAX), @section VARCHAR(4)
    -- First, handle the sign
    IF (@value < 0) SET @minus = '-' ELSE SET @minus = ''
    SET @working = CAST(@value AS VARCHAR)
    if (@minus <> '') SET @working = SUBSTRING(@working, 2, LEN(@working)-1)
    
    SET @result  = ''
    
	-- break apart the number into sections of 3 digits and insert commas
    WHILE LEN(@working) > 3
    BEGIN
        SET @section = ',' + SUBSTRING(@working, LEN(@working)-2, 3)
        SET @working = SUBSTRING(@working, 1, LEN(@working)-3)
        SET @result  = @section + @result
    END
    
	-- add the remaining and tack on that sign if needed
    IF (@minus <> '')
        RETURN @minus + @working + @result
        
    RETURN @working + @result
END
 
Usage is
 
PRINT dbo.FormatNumber(123456)
PRINT dbo.FormatNumber(-123)
 
The result will be
 
123,456
-123

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Chris Maunder
Founder CodeProject
Canada Canada
Chris is the Co-founder, Administrator, Architect, Chief Editor and Shameless Hack who wrote and runs The Code Project. He's been programming since 1988 while pretending to be, in various guises, an astrophysicist, mathematician, physicist, hydrologist, geomorphologist, defence intelligence researcher and then, when all that got a bit rough on the nerves, a web developer. He is a Microsoft Visual C++ MVP both globally and for Canada locally.
 
His programming experience includes C/C++, C#, SQL, MFC, ASP, ASP.NET, and far, far too much FORTRAN. He has worked on PocketPCs, AIX mainframes, Sun workstations, and a CRAY YMP C90 behemoth but finds notebooks take up less desk space.
 
He dodges, he weaves, and he never gets enough sleep. He is kind to small animals.
 
Chris was born and bred in Australia but splits his time between Toronto and Melbourne, depending on the weather. For relaxation he is into road cycling, snowboarding, rock climbing, and storm chasing.
Follow on   Twitter   Google+

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralRe: yep. problem solved. IIRC you also changed the way positives...mvpLuc Pattyn12-Jun-11 14:39 
yep. problem solved.
IIRC you also changed the way positives get returned. Having had trouble with a leading NULL? I had been wondering about SET @minus = '' too but didn't mention it (it wouldn't compile in the languages I'm used to, I don't know how SQL treats it, my guess now is it turns it into a NULL character, i.e. a '\0')
GeneralI'm also puzzled about SET @minus = '-1', shouldn't that be ...mvpLuc Pattyn12-Jun-11 9:05 
I'm also puzzled about SET @minus = '-1', shouldn't that be SET @minus = '-'
 
?=?
GeneralRe: typoadminChris Maunder12-Jun-11 10:42 
typo
GeneralThat is the typical way to do these things, however it is th...mvpLuc Pattyn12-Jun-11 9:01 
That is the typical way to do these things, however it is the first time I see it done in SQL.
 
Unfortunately, it is bound to fail for the smallest possible input value. Have you tested with -9,223,372,036,854,775,808?
 
As you are relying on the system's int-to-string conversion anyway, why not avoid the bug and convert the original number rather than the attempted ABS value, and then deal with the possible '-' character from there?
 
Smile | :)
GeneralRe: Fair call. I've updated the code.adminChris Maunder12-Jun-11 14:28 
Fair call. I've updated the code.
GeneralReason for my vote of 5 :)mentorMd. Marufuzzaman12-Jun-11 6:00 
Reason for my vote of 5
Smile | :)
GeneralIt’s simply awesome!!! ThanksmentorMd. Marufuzzaman12-Jun-11 5:59 
It’s simply awesome!!! Thanks
GeneralNice and handy!! ThanksmemberRakeshMeena11-Jun-11 20:05 
Nice and handy!! Thanks

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130617.1 | Last Updated 12 Jun 2011
Article Copyright 2011 by Chris Maunder
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid