4

我有简单的 mysql 查询

select count(total_profit)as profit from sales_profits

结果我得到了这样的东西profit=25000000000。我想要的是这样profit=25,000,000,000的,有什么方法可以在 MYSQL 中做到吗?

4

2 回答 2

11

尝试

SELECT FORMAT(COUNT(total_profit), 0) AS profit 
FROM sales_profits
于 2014-01-22T12:12:13.390 回答
0

此处回答的格式功能

于 2014-01-22T12:13:17.547 回答