Saturday, 23 March 2019

The PADS HackerRank SQL Solution in MYSQL

 Problem:-

 Generate the following two result sets:
  1. Query an alphabetically ordered list of all names in OCCUPATIONS, immediately followed by the first letter of each profession as a parenthetical (i.e.: enclosed in parentheses). For example: AnActorName(A)ADoctorName(D)AProfessorName(P), and ASingerName(S).
  2. Query the number of ocurrences of each occupation in OCCUPATIONS. Sort the occurrences in ascending order, and output them in the following format: 
    There are a total of [occupation_count] [occupation]s.
    
    where [occupation_count] is the number of occurrences of an occupation in OCCUPATIONS and [occupation] is the lowercase occupation name. If more than one Occupation has the same [occupation_count], they should be ordered alphabetically.
Note: There will be at least two entries in the table for each type of occupation.
Input Format
The OCCUPATIONS table is described as follows:Occupation will only contain one of the following values: DoctorProfessorSinger or Actor.
Sample Input
An OCCUPATIONS table that contains the following records:
Sample Output
Ashely(P)
Christeen(P)
Jane(A)
Jenny(D)
Julia(A)
Ketty(P)
Maria(A)
Meera(S)
Priya(S)
Samantha(D)
There are a total of 2 doctors.
There are a total of 2 singers.
There are a total of 3 actors.
There are a total of 3 professors.
Explanation
The results of the first query are formatted to the problem description's specifications. 
The results of the second query are ascendingly ordered first by number of names corresponding to each profession (), and then alphabetically by profession (, and ).

 Solution:-
SELECT concat(NAME,concat("(",concat(substr(OCCUPATION,1,1),")"))) FROM OCCUPATIONS ORDER BY NAME ASC;


SELECT "There are a total of ", count(OCCUPATION), concat(lower(occupation),"s.") FROM OCCUPATIONS GROUP BY OCCUPATION ORDER BY count(OCCUPATION), OCCUPATION ASC

3 comments:

  1. I have written the following query, when the see the output, it looked same as expected but it is showing as wrong answer for above question, can somebody help?
    select CONCAT(name,'(',Upper(substr(occupation,1,1)),')') from occupations order by name;
    select CONCAT('There are a total of',' ',count(name),' ',occupation,'s.')
    from occupations
    group by occupation
    order by count(name),occupation;

    ReplyDelete
  2. SELECT NAME||'('||RPAD(OCCUPATION,1)||')' FROM OCCUPATIONS ORDER BY NAME;
    SELECT 'There are a total of', COUNT(OCCUPATION),
    CASE
    WHEN OCCUPATION = 'Doctor' THEN 'doctors.'
    WHEN OCCUPATION = 'Professor' THEN 'professors.'
    WHEN OCCUPATION = 'Actor' THEN 'actors.'
    WHEN OCCUPATION = 'Singer' THEN 'singers.'
    end
    FROM OCCUPATIONS GROUP BY OCCUPATION order by count(OCCUPATION),OCCUPATION;

    ReplyDelete
  3. This comment has been removed by the author.

    ReplyDelete

Error While embed the video in Your website page

Error:- Refused to display '<URL>' in a frame because it set 'X-Frame-Options' to 'sameorigin Solution:- if ...