Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MySql Convert to Money

Status
Not open for further replies.

ross1228

Programmer
Oct 20, 2006
14
US
Is there a way to output a "money" type in MySql?
Say I have a decimal "1234.22222", I want it displayed as "$1,234.22"

Thanks.
 
Although that type of formatting should be done in your front end you can do something like this in mysql to get what you want:

Code:
SELECT CONCAT('$', FORMAT(mynumberfield, 2)) as fieldalias
FROM mytable;

----------------------------------
Ignorance is not necessarily Bliss, case in point:
Unknown has caused an Unknown Error on Unknown and must be shutdown to prevent damage to Unknown.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top