Revising Aggregations - The Count Function

  • + 1 comment

    Here is Oracle solution from my HackerrankPractice repository:

    SELECT COUNT(*)
    FROM City
    WHERE Population > 100000;
    

    Feel free to ask if you have any questions :)