funds_table --------------------------- source_id, amount, date, --------------------------- 1, 1000, 2016-01-15 2, 2000, 2016-02-28
ca_table --------------------------- ca_id,source_id, amount --------------------------- c1 , 1, 500 c2 , 1, 500 c3 , 2, 900 c4 , 2, 1100
exp_table --------------------------- exp_id, ca_id, amount, --------------------------- e1, c1, 0 e2, c1, 250 e3, c2, 500 e4, c3, 500 e5, c4, 600 e6, c4, 500
私が選択MONTHNAME(日付)、合計(funds_table.amount **)、合計(ca_table.amount)、を合計したいです合計(exp_table.amount) は(日)、月によって互いに 年(日付)= 2016 とグループに参加MySQLの合計欄の異なる3つのテーブル
期待出力に
----------------------------------------------------------------------- MonthName(date),sum(source_id.amount),sum(ca_id.amount),sum(exp_id.amount) ----------------------------------------------------------------------- Jan , 1000, 1000, 750 Feb , 2000, 2000, 1100
3日間の結果の検索が、私は、正確な結果を得るカント。
あなたの問題とは何ですか? – Jens
私は最後のテーブルが結果になることを望みます –