Given a table GAMERS, query for the count of each Role of the Players in the given table. Sort the result based on ascending order of the count and print the result in the following format:
[Role] Count is [Role_Count]
The description of the table GAMERS is given below:
NOTE : The output should contain one table by the name ‘COUNT’ .
Example :
NOTE: You only need to implement the given function. Do not read input, instead use the arguments to the function. Do not print the output, instead return values as specified. Still have a question? Checkout Sample Codes for more details.