money_format

Description

Syntax

VARCHAR money format (Number)

The number is output in currency format, the integer part is separated by commas every three bits, and the decimal part is reserved for two bits.

example

  1. mysql> select money_format(17014116);
  2. +------------------------+
  3. | money_format(17014116) |
  4. +------------------------+
  5. | 17,014,116.00 |
  6. +------------------------+
  7. mysql> select money_format(1123.456);
  8. +------------------------+
  9. | money_format(1123.456) |
  10. +------------------------+
  11. | 1,123.46 |
  12. +------------------------+
  13. mysql> select money_format(1123.4);
  14. +----------------------+
  15. | money_format(1123.4) |
  16. +----------------------+
  17. | 1,123.40 |
  18. +----------------------+

keyword MONEY_FORMAT,MONEY,FORMAT