Percent Function?
Is there a built in Percent Fuction to calculate percentages for this query:
select null link, movie_category label, count(movie_category) value
from all_movies
where movie_category IN ('Action', 'Comedy')
group by movie_category;
Thanks,
Romi