Revising the Select Query I

  • + 26 comments

    Here is Oracle solution from my HackerrankPractice repository:

    SELECT *
    FROM CITY
    WHERE
        COUNTRYCODE = 'USA'
        AND POPULATION > 100000;
    

    Feel free to ask if you have any questions :)