Porcentaje sql
select (count(refinst)::decimal / (select count(*) from patients)::decimal) * 100 as "Formula"
from patients;
JoeCoder
select (count(refinst)::decimal / (select count(*) from patients)::decimal) * 100 as "Formula"
from patients;