MYSQL选择将数字转换为百万,数十亿格式

时间:2014-01-22 12:08:07

标签: mysql currency-formatting

我有简单的mysql查询

select count(total_profit)as profit from sales_profits

我得到一些像这样的结果profit=25000000000。我想要的是像profit=25,000,000,000这样的,我们可以用某种方式在MYSQL中做到这一点吗?

2 个答案:

答案 0 :(得分:11)

尝试

SELECT FORMAT(COUNT(total_profit), 0) AS profit 
FROM sales_profits

答案 1 :(得分:0)

Format function

中的回答

here