0
私は、それぞれの新しい列を作成するために各合計でグループを取得しようとしています。結果としてグループ合計金額のmysql内訳
SELECT
distinct settlement_id,
SUM(amount) AS `Order`,
SUM(amount) AS `Refund`,
SUM(amount) AS `Servicefee`,
SUM(amount) AS `other_Transaction`
FROM
settlements
WHERE
transaction_type = 'order'
OR transaction_type = 'refund'
OR transaction_type = 'ServiceFee'
OR transaction_type = 'other-transaction'
GROUP BY settlement_id ASC , transaction_type ASC
が、私はこれは、下記のスクリーンショットのような結果の一種である
を探していますされていないものを、それは私が
あなたはあなたの質問を編集し、すべてのデータを質問に直接含めることができますか? –
私はそれを行います。 –