Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / Languages / SQL

Display number or amount with commas but no decimal places or extension displayed

0.00/5 (No votes)
5 Jul 2012CPOL 15.8K  
Display number or amount with commas but no decimal places or extension displayed

Introduction

This post discusses how to display number or amount with commas, but no decimal places or extension displayed.

Here's the scenario:

I searched for awhile on how could I eliminate the decimal places on a particular field, but not remove the commas.

Like this: 234345455.89

Desired Output: 234,345,456

SQL
PARSENAME(CONVERT(varchar, CONVERT(money,txtSparkVolume), 1), 2) as txtSparkVolume,  

Using the Code

Here is the solution I made:
SQL
DECLARE txtGasVolume as float
SET GasVolume  =  234345455.89
PARSENAME(CONVERT(varchar, CONVERT(money,GasVolume), 1), 2) as cGasVolume 

I hope this helps. Thank you and God bless.

License

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