For table 'Issue'
Call_ref is the unique key identifying every call uniquely. Each call is made by a user with users identified through a caller_id. Each user can make multiple calls but every call will have only one caller_id. I want to display calls made by top 20% of active users. I tried this query-
SELECT Caller_id, COUNT(Call_ref) FROM Issue
GROUP BY Caller_id
ORDER BY COUNT(Call_ref)
LIMIT round(COUNT(distinct Caller_id)/5)
However, it seems like LIMIT doesn't accept anything but a number. Is there a way I can restrict this view to only top 20% of all records in the resulting table?
With
ROW_NUMBER()
ANDCOUNT(*)
window functions: