あなたの質問は、結果の注文に関するもののようです。解決策は、ORDER BY
でウィンドウ関数を使用することです。 :
SELECT lot, defect, SUM(quantity)
FROM table
GROUP BY lot, defect
ORDER BY SUM(SUM(quantity)) OVER (PARTITION BY lot) DESC,
lot, SUM(quantity) DESC, defect;
あなたの質問は、結果の注文に関するもののようです。解決策は、ORDER BY
でウィンドウ関数を使用することです。 :
SELECT lot, defect, SUM(quantity)
FROM table
GROUP BY lot, defect
ORDER BY SUM(SUM(quantity)) OVER (PARTITION BY lot) DESC,
lot, SUM(quantity) DESC, defect;