如何獲得9300只出上表的?我只需要添加6500 + 1800 + 1000
這裏是我當前的查詢
SELECT
SUM(e.amount)/(SELECT count(e2.receipt_no)
FROM entries e2
WHERE e2.receipt_no = e.receipt_no) as total,
e.user_id
FROM
entries e
GROUP BY e.receipt_no
結果是
現在我需要得到每user_id
預期產量應爲
PLZ告訴你需要 – Shibon
'GROUP BY DISTINCT e.receipt_no' –
@JaydipJ它在GROUP BY e.receipt_no添加不同的 – Kiel