List of Colleges teaching Physical Education Course in Tamil Nadu
SELECT distinct programme,state,dist,count(*) as nos FROM college_course where programme='Physical Education' and state like 'tamil%' and dist is not null AND trim(dist)<>'' group by programme,state,dist20