为什么mySQL函数返回kubectl apply -f calico-namespace/management-ui.yaml
service "management-ui" unchanged
error: error converting YAML to JSON: yaml: line 20: did not find expected key
?
not a single group function error
答案 0 :(得分:0)
您是要对已支付的金额求和?试试这个版本:
SELECT order#, TO_CHAR(SUM(quantity*paideach), '$999.99') AS "Order Total"
FROM orderitems
GROUP BY order#;
您看到此错误,是因为您已指示Oracle按orderitems
来汇总order#
表。这意味着它将报告给定订单的所有记录的汇总,因此选择quantity*paideach
(单个记录的属性)没有意义。求和应该可以解决此错误。