"SELECT
tb_section.section_name,
tb_institution.institution_name,
tb_invest.allocation_invest,
tb_invest.bring_invest,
tb_regular.allocation_reg,
tb_regular.bring_reg,
tb_invest.date_invest,
tb_regular.date_reg
FROM
tb_invest
Right Join tb_institution ON tb_invest.invest = tb_institution.institution_id
Right Join tb_section ON tb_institution.section_id = tb_section.section_id
Left Join tb_regular ON tb_regular.reg = tb_institution.institution_id
WHERE MONTH(tb_regular.date_invest)='$m' AND YEAR(tb_regular.date_invest)='$y'
ORDER BY invest ASC ";
ผมต้องการ join ตาราง 4 ตาราง แล้วจะ where เดือนกับปีด้วยครับ ต้องทำไง?