อันนี้หาจาก program_id จะได้จำนวนนักเรียนที่เรียน program_id ='1' มาจากทุกโรงเรียน
select a.school_id,b.program_id,count(*) from school a, room b, student c
where a.school_id = c.school_id and b.program_id = c.program_id
and b.program_id = '1' group by a.school_id, b.program_id order by a.school_id,b.program_id;
อันนี้หาจาก school_id จะได้จำนวนนักเรียนที่เรียนแต่ละ program_id ของ school_id ='1'
select a.school_id,b.program_id,count(*) from school a, room b, student c
where a.school_id = c.school_id and b.program_id = c.program_id
and a.school_id = '1' group by a.school_id, b.program_id order by a.school_id,b.program_id;