$query_stoday = "SELECT sum(amount), sum(amtnaira)
FROM transactions
WHERE transtype = 'buy'
AND batch !=''
AND date2 ='$date2'";
我使用上面的代码来计算当天的总金额,但我注意到它只计算逗号之前的数字。例如,在2,780.00中,它仅添加2 并忽略逗号后的数字。请问我如何进行查询以计算所有内容?