select
c.nome
,COUNT(m.id) as QtdMatricula
,COUNT(m.id) / (select count(id) from matricula m1 ) as divisao1
,(select count(id) from matricula m1 ) /COUNT(m.id) as divisao2
from
curso c
inner join matricula m on c.id = m.curso_id
group by
c.nome