• + 4 comments

    I don't know why this is wrong. the logic is correct and the result return what are expected, but hackerrank says wrong answer.

    Am I joke to you??

    SELECT CONCAT(NAME, " (", LEFT(OCCUPATION, 1), ")") FROM OCCUPATIONS ORDER BY NAME ASC; SELECT CONCAT("There are a total of ", count(OCCUPATION), " ", LOWER(OCCUPATION), "s.") FROM OCCUPATIONS GROUP BY OCCUPATION ORDER BY COUNT(OCCUPATION), OCCUPATION ASC;