select gppp.policyNo pn, gppp.endorseSeqNo esn, gppp.riskCode rc, gppp.paymentNo pn, gppp.salesmanCode sc, gppp.sourceInd si, sum(gppp.planFee * gppp.exchangeRate) gross, sum(gppp.payFee * gppp.exchangeRate) netPremium from com.chinainsurance.application.payment.persistence.po.GpPolicyPayment gppp where to_char(gppp.payDate, 'YYYY-MM') = '2006-09' and gppp.salesmanCode = '0200000001' and gppp.riskCode = '0101' group by gppp.policyNo, gppp.endorseSeqNo, gppp.riskCode, gppp.paymentNo, gppp.salesmanCode, gppp.sourceInd 像sum(gppp.planFee * gppp.exchangeRate) gross这种写法是不是不支持呀,怎么解决