select Grade, count(*) * 100.0 / (select count(*) from Inspection)
from Inspection
group by Grade;
the other column I have is Date_time I would like to get all the Grade data from current date.
thanks
select Grade, count(*) * 100.0 / (select count(*) from Inspection)
from Inspection
group by Grade;
the other column I have is Date_time I would like to get all the Grade data from current date.
thanks