我有简单的mysql查询
select count(total_profit)as profit from sales_profits
我得到一些像这样的结果profit=25000000000
。我想要的是像profit=25,000,000,000
这样的,我们可以用某种方式在MYSQL中做到这一点吗?
答案 0 :(得分:11)
尝试
SELECT FORMAT(COUNT(total_profit), 0) AS profit
FROM sales_profits
答案 1 :(得分:0)