Click here to Skip to main content
15,881,092 members
Articles / Programming Languages / SQL
Tip/Trick

Format a number (with commas) in SQL

Rate me:
Please Sign up or sign in to vote.
4.75/5 (5 votes)
12 Jun 2011CPOL 51.7K   2   8
A small function to format numeric values
SQL
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

SQL
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)


Written By
Founder CodeProject
Canada Canada
Chris Maunder is the co-founder of CodeProject and ContentLab.com, and has been a prominent figure in the software development community for nearly 30 years. Hailing from Australia, Chris has a background in Mathematics, Astrophysics, Environmental Engineering and Defence Research. His programming endeavours span everything from FORTRAN on Super Computers, C++/MFC on Windows, through to to high-load .NET web applications and Python AI applications on everything from macOS to a Raspberry Pi. Chris is a full-stack developer who is as comfortable with SQL as he is with CSS.

In the late 1990s, he and his business partner David Cunningham recognized the need for a platform that would facilitate knowledge-sharing among developers, leading to the establishment of CodeProject.com in 1999. Chris's expertise in programming and his passion for fostering a collaborative environment have played a pivotal role in the success of CodeProject.com. Over the years, the website has grown into a vibrant community where programmers worldwide can connect, exchange ideas, and find solutions to coding challenges. Chris is a prolific contributor to the developer community through his articles and tutorials, and his latest passion project, CodeProject.AI.

In addition to his work with CodeProject.com, Chris co-founded ContentLab and DeveloperMedia, two projects focussed on helping companies make their Software Projects a success. Chris's roles included Product Development, Content Creation, Client Satisfaction and Systems Automation.

Comments and Discussions

 
GeneralRe: yep. problem solved. IIRC you also changed the way positives... Pin
Luc Pattyn12-Jun-11 14:39
sitebuilderLuc Pattyn12-Jun-11 14:39 
GeneralI'm also puzzled about SET @minus = '-1', shouldn't that be ... Pin
Luc Pattyn12-Jun-11 9:05
sitebuilderLuc Pattyn12-Jun-11 9:05 
GeneralRe: typo Pin
Chris Maunder12-Jun-11 10:42
cofounderChris Maunder12-Jun-11 10:42 
GeneralThat is the typical way to do these things, however it is th... Pin
Luc Pattyn12-Jun-11 9:01
sitebuilderLuc Pattyn12-Jun-11 9:01 
GeneralRe: Fair call. I've updated the code. Pin
Chris Maunder12-Jun-11 14:28
cofounderChris Maunder12-Jun-11 14:28 
GeneralReason for my vote of 5 :) Pin
Md. Marufuzzaman12-Jun-11 6:00
professionalMd. Marufuzzaman12-Jun-11 6:00 
GeneralIt’s simply awesome!!! Thanks Pin
Md. Marufuzzaman12-Jun-11 5:59
professionalMd. Marufuzzaman12-Jun-11 5:59 
GeneralNice and handy!! Thanks Pin
RakeshMeena11-Jun-11 20:05
RakeshMeena11-Jun-11 20:05 

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.