Revising the Select Query I

  • + 0 comments

    Certainly! Here is the SQL query in markdown format:

    CREATE INDEX idx_population ON city(population);
    CREATE INDEX idx_countrycode ON city(countrycode);
    
    SELECT *
    FROM city
    WHERE 
        population > 100000 AND 
        countrycode = "USA";