大家,早安,
我有一个看起来像这样的表,使用 format() 我可以将 (,) 放在我的 begbalance、存款和取款表上,这些表都是小数。
| begbalance | deposit | withdraw |
SELECT format(begbalance,2)begbalance,
format(deposit,2)deposit,
format(withdraw,2)withdraw,
begbalance+deposit+withdraw AS balance
FROM savingstable;
我的问题是我不能使用格式()平衡,我想用逗号(,)平衡。有什么建议吗?提前致谢