Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 755 Bytes

File metadata and controls

38 lines (28 loc) · 755 Bytes

money_format

description

Syntax

VARCHAR money_format(Number)

将数字按照货币格式输出,整数部分每隔3位用逗号分隔,小数部分保留2位

example

MySQL > select money_format(17014116);
+------------------------+
| money_format(17014116) |
+------------------------+
| 17,014,116.00          |
+------------------------+

MySQL > select money_format(1123.456);
+------------------------+
| money_format(1123.456) |
+------------------------+
| 1,123.46               |
+------------------------+

MySQL > select money_format(1123.4);
+----------------------+
| money_format(1123.4) |
+----------------------+
| 1,123.40             |
+----------------------+

keyword

MONEY_FORMAT,MONEY,FORMAT