List of Colleges teaching Mathematics Course in West Bengal
SELECT distinct programme,state,dist,count(*) as nos FROM college_course where programme='Mathematics' and state like 'west%' and dist is not null AND trim(dist)<>'' group by programme,state,dist19