在SQL中使用分组依据功能时遇到问题

时间:2018-10-03 03:19:31

标签: mysql sql

为什么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

1 个答案:

答案 0 :(得分:0)

您是要对已支付的金额求和?试试这个版本:

SELECT order#, TO_CHAR(SUM(quantity*paideach), '$999.99') AS "Order Total"
FROM orderitems
GROUP BY order#;

您看到此错误,是因为您已指示Oracle按orderitems来汇总order#表。这意味着它将报告给定订单的所有记录的汇总,因此选择quantity*paideach(单个记录的属性)没有意义。求和应该可以解决此错误。